raceback (most recent call last): height,width = img.shape[0:2] AttributeError: ‘NoneType’ object has no attribute ‘shape’错误的解决方法

经过检查发现是python中图像不存在
原因:
1.图片不存在(路径不存在, 路径包含中文无法识别)
查看路径,必要时,请将中文路径改为英文路径

2.读取的图片内容和默认读取时参数匹配不匹配。(默认读取的是3通道的彩色图)
例如读取到的图片是灰度图,就会返回None。

AttributeError: module ‘cv2’ has no attribute ‘imread’
主要原因是程序命名为cv.py或者cv2.py,只需将改为其他的就可以啦

解决方法:

把:path = "/jimei/20200815/east/caizhuang/111980.jpg"
修改为:path = "jimei/20200815/east/caizhuang/111980.jpg"