成功解决AttributeError: ‘PngImageFile‘ object has no attribute ‘imshow‘

成功解决AttributeError: 'PngImageFile' object has no attribute 'imshow'

目录

解决问题

解决思路

解决方法


解决问题

AttributeError: 'PngImageFile' object has no attribute 'imshow'

解决思路

属性错误:“PngImageFile”对象没有属性“imshow”

解决方法

PngImageFile没有imshow方法,但是有show方法,所以需要进行以下更改!

将
img.imshow()
改为
img.show()

猜你喜欢

转载自blog.csdn.net/qq_41185868/article/details/126058418