pip install Pillow
from PIL import Image
# 打开图片
img = Image.open('example.jpg')
# 缩放图片
resized_img = img.resize((200, 200))
# 保存图片
resized_img.save('example_resized.jpg')
pip install opencv-python
import cv2
# 读取图片
img = cv2.imread('example.jpg')
# 缩放图片
resized_img = cv2.resize(img, (200, 200))
# 保存图片
cv2.imwrite('example_resized.jpg', resized_img)
from PIL import Image
# 打开图片
img = Image.open('example.jpg')
# 旋转图片
rotated_img = img.rotate(45)
# 保存图片
rotated_img.save('example_rotated.jpg')
import cv2
import numpy as np
# 读取图片
img = cv2.imread('example.jpg')
# 获取图片宽高
(h, w) = img.shape[:2]
# 构造旋转矩阵,取得图片中心点,旋转45度
center = (w // 2, h // 2)
M = cv2.getRotationMatrix2D(center, 45, 1.0)
# 旋转图片
rotated_img = cv2.warpAffine(img, M, (w, h))
# 保存图片
cv2.imwrite('example_rotated.jpg', rotated_img)
在PIL库中,resize方法直接调用即可,而在OpenCV库中需要调用resize函数。在PIL库中,直接调用rotate方法即可旋转图片,而在OpenCV库中需要使用warpAffine函数和getRotationMatrix2D函数构造旋转矩阵后再进行旋转,相当于手动实现了旋转算法。
总体而言,PIL库实现简单的图片处理任务更为方便,而OpenCV库则更为灵活,可应对更加复杂的处理任务。