鱼C论坛

 找回密码
 立即注册
查看: 2494|回复: 1

一个AttributeError问题

[复制链接]
发表于 2019-11-7 16:17:09 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
我用PIL处理了一张图代码如下:
from PIL import Image
from PIL import ImageFilter
imgF = Image.open("E:\youwife.jpg")
bluF = Image.filter(ImageFilter.BLUR)
conF = Image.filter(ImageFilter.CONTOUR)
edgeF = Image.filter(ImageFilter.FIND_EDGES)
imgF.show()
bluF.show()
conF.show()
edgeF.show()
运行之后shell里面显示了一个错误:AttributeError: 'module' object has no attribute 'filter'
我看了一下网上处理的方法,就是删除对应名称模块的.pcy后缀的文件,但是我删除该文件之后还是没有进行下去,还是继续跳出AttributeError: 'module' object has no attribute 'filter',有没有大神告诉一下怎样处理这个问题啊?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2019-11-7 16:32:02 | 显示全部楼层
找出原因了
bluF = Image.filter(ImageFilter.BLUR)
conF = Image.filter(ImageFilter.CONTOUR)
edgeF = Image.filter(ImageFilter.FIND_EDGES)
这里写错了
应该是
bluF = imgF.filter(ImageFilter.BLUR)
conF = imgF.filter(ImageFilter.CONTOUR)
edgeF = imgF.filter(ImageFilter.FIND_EDGES)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 19:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表