更新於 2024/12/03閱讀時間約 4 分鐘

Python 解鎖 - Image Tricks

raw-image
!pip install rembg pillow onnxruntime

from google.colab import drive
from google.colab import files
drive.mount('/content/drive')
from rembg import remove
from PIL import Image
import os


圖片去背

使用 rembg 套件來移除存於 Google Drive的 台灣隊長陳傑憲 圖片背景,並將處理後的圖片存於Google Drive。

# 定義 Google Drive 的目錄

drive_folder = "/content/drive/MyDrive/processed_images/"

# 確保資料夾存在

os.makedirs(drive_folder, exist_ok=True)

# 打開輸入影像

input_image = Image.open('images.jpg')

# 移除影像背景

output_image = remove(input_image)

# 儲存在 Google Drive 的路徑

output_path = os.path.join(drive_folder, 'image_processed.png')

# 儲存處理後的影像到 Google Drive

output_image.save(output_path)

print(f"處理後的影像已儲存到:{output_path}")



圖片Mirror

使用 rembg 套件來 mirror 存於Google Drive的 台灣隊長陳傑憲 圖片,並將處理後的圖片存於Google Drive。

# 打開輸入影像

input_image = Image.open('/content/drive/MyDrive/processed_images/images.jpg')

# 生成鏡像圖片

Mirror_Image = input_image.transpose(Image.FLIP_LEFT_RIGHT)

# 儲存鏡像圖片

Mirror_Image.save('/content/drive/MyDrive/processed_images/mirror.jpg')

# 打開鏡像圖片

Image.open(Mirrored_Image)





下載連結

以下為本 Python 練習題 的程式碼(持續增加中),想拿資料作練習的朋友可以點下單連結,下載連結會寄至您提供的Email喔! 歡迎您輸入金額小額贊助我們喔!

Python - Tools & Tricks - Payhip



謝謝您花時間將此篇文章讀完,若覺得對您有幫助可以幫忙按個讚、分享來或是珍藏喔!也歡迎Follow我的ThreadsFB,持續追蹤生產力工具、商業分析、商業英文的實用範例,提升自己的職場力喔!













分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.