17.PIL报错`AttributeError: module ‘PIL.Image‘ has no attribute ‘ANTIALIAS‘`


欢迎访问个人网络日志🌹🌹知行空间🌹🌹


PIL Resize Image报错

报错AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'

在使用yolov5做实例分割时,根据代码库自己安装的Pillow版本大于10.0.0,运行程序报错如下:

--------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
Input In [2], in <cell line: 4>()
      1 from PIL import Image
      3 image = Image.open(r"/hxx/Desktop/675264194_n.jpg")
----> 4 image = image.resize((20, 20), Image.ANTIALIAS)

AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS'

原因及解决办法

报错原因是因为10.0.0以后版本的Pillow已经舍弃了ANTIALIAS,与其有同样作用的是PIL.Image.LANCZOS 或者 PIL.Image.Resampling.LANCZOS

所以解决办法有两个,

  • 一个是修改代码
from PIL import Image

image = Image.open(r"/home/lx/Desktop/675264194_n.jpg")
image = image.resize((20, 20), Image.LANCZOS)
  • 一个是修改环境
pip install Pillow==9.5.0

reference


欢迎访问个人网络日志🌹🌹知行空间🌹🌹


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值