成功解决AttributeError: 'PngImageFile' object has no attribute 'imshow'
目录
解决问题
解决思路
解决方法
解决问题AttributeError: 'PngImageFile' object has no attribute 'imshow'
解决思路属性错误:“PngImageFile”对象没有属性“imshow”
解决方法PngImageFile没有imshow方法,但是有show方法,所以需要进行以下更改!
将
img.imshow()
改为
img.show()