📅  最后修改于: 2023-12-03 14:51:21.251000             🧑  作者: Mango
Python中有多种方法可以根据图像大小属性进行过滤。在本文中,我们将介绍使用Pillow库和OpenCV库的方法。
Pillow是Python Imaging Library (PIL)的替代品,它允许你在Python中打开、操作和保存多种图像格式。下面是一个使用Pillow库根据图像大小过滤的例子:
from PIL import Image
import os
size_threshold = 3000000 # 图像大小阈值
for filename in os.listdir('images/'): # images是包含图片的文件夹的名称
image_path = os.path.join('images/', filename)
with Image.open(image_path) as im:
if im.size[0] * im.size[1] > size_threshold:
# 处理大于阈值的图像
print(f'{filename} is larger than {size_threshold} pixels')
else:
# 处理小于阈值的图像
print(f'{filename} is smaller than {size_threshold} pixels')
上面的代码处理了一个名为'images'的文件夹中的所有图像,然后根据它们的大小进行分类。
OpenCV是一个强大的计算机视觉库,它包含了很多用于处理图像和视频的函数。下面是一个使用OpenCV库根据图像大小过滤的例子:
import cv2
import os
size_threshold = 3000000 # 图像大小阈值
for filename in os.listdir('images/'): # images是包含图片的文件夹的名称
image_path = os.path.join('images/', filename)
img = cv2.imread(image_path)
if img.size > size_threshold:
# 处理大于阈值的图像
print(f'{filename} is larger than {size_threshold} pixels')
else:
# 处理小于阈值的图像
print(f'{filename} is smaller than {size_threshold} pixels')
上面的代码处理了一个名为'images'的文件夹中的所有图像,然后根据它们的大小进行分类。
本文介绍了在Python中根据大小属性过滤图像的两种方法:使用Pillow库和OpenCV库。这些方法可应用于多个场景,它们将帮助你更好地处理和筛选图像。