溫馨提示×

Pillow怎么實現(xiàn)圖像的透視變換和校正

小億
109
2024-05-23 15:06:14
欄目: 編程語言

要實現(xiàn)圖像的透視變換和校正,可以使用Pillow庫中的transform模塊。下面是一個簡單的示例代碼:

from PIL import Image
from PIL import ImageOps

# 打開圖片
img = Image.open('example.jpg')

# 定義透視變換的四個點坐標(biāo)
points = [(0, 0), (img.width, 0), (img.width, img.height), (0, img.height)]

# 定義變換后的四個點坐標(biāo)
new_points = [(0, 0), (img.width, 0), (img.width*0.8, img.height), (img.width*0.2, img.height)]

# 透視變換
img = img.transform((img.width, img.height), Image.PERSPECTIVE, new_points, Image.BICUBIC)

# 校正
img = ImageOps.autocontrast(img)

# 保存圖片
img.save('output.jpg')

在上面的代碼中,我們首先打開了一張圖片,然后定義了透視變換的四個點坐標(biāo)和變換后的四個點坐標(biāo),使用transform函數(shù)進行透視變換,最后使用autocontrast函數(shù)進行校正并保存變換后的圖片。您可以根據(jù)具體需求調(diào)整點坐標(biāo)和變換參數(shù)來實現(xiàn)不同的透視變換效果。

0