Pillow庫是Python中一個常用的圖像處理庫,可以用來實現自動圖像裁剪。下面是一個示例代碼,演示如何使用Pillow庫實現自動圖像裁剪:
from PIL import Image
def auto_crop_image(input_image_path, output_image_path):
image = Image.open(input_image_path)
# 獲取圖像的尺寸
width, height = image.size
# 設置裁剪的邊界
left = width
right = 0
top = height
bottom = 0
# 遍歷圖像的每一個像素,找到需要裁剪的邊界
for x in range(width):
for y in range(height):
color = image.getpixel((x, y))
if color != (0, 0, 0): # 這里假設背景色是黑色,可以根據實際情況調整
if x < left:
left = x
if x > right:
right = x
if y < top:
top = y
if y > bottom:
bottom = y
# 裁剪圖像
cropped_image = image.crop((left, top, right, bottom))
cropped_image.save(output_image_path)
# 調用函數進行自動裁剪
auto_crop_image('input_image.jpg', 'output_image.jpg')
在上面的代碼中,首先打開輸入圖像,然后遍歷每一個像素,找到非背景色的邊界坐標,最后根據這些邊界坐標進行裁剪,并保存輸出圖像。你可以根據實際需求調整背景色和裁剪邊界的設置。