在使用PIL(Python Imaging Library,现在称为Pillow)库获取图片尺寸信息时,可以遵循以下步骤进行: 导入PIL库: 首先,需要确保已经安装了Pillow库。如果未安装,可以使用pip install Pillow命令进行安装。然后,在代码中导入PIL库的Image模块。 python from PIL import Image 使用PIL库打开图片: 使用Image模块的open函数打开...
from PIL import Image with Image.open(filepath) as img: width, height = img.size 速度 这需要 3.21 秒来处理 30336 张图像(JPG 从 31x21 到 424x428,训练数据来自 Kaggle 上的National Data Science Bowl) 这可能是使用 Pillow 而不是自己编写的东西的最重要原因。你应该使用 Pillow 而不是 PIL (...