解决easyocr不识别中文路径问题AttributeError: ‘NoneType‘ object has no attribute ‘shape‘

报错信息:

AttributeError: 'NoneType' object has no attribute 'shape'

报错原因:

easyocr源码中cv2.imread方法不支持中文路径导致

解决方法:

1.点击报错信息进入utils.py源码文件:

解决easyocr不识别中文路径问题AttributeError: ‘NoneType‘ object has no attribute ‘shape‘_第1张图片

2.增加以下方法:

#解决cv2.imread不支持中文路径问题
def cv2_readimg(filename, mode):
    #把图片文件存入内存
	img_date= np.fromfile(filename, dtype=np.uint8)  
    #从内存数据读入图片
	img = cv2.imdecode(img_date, mode)  
	return img

3.注释

img_cv_grey = cv2.imread(image, cv2.IMREAD_GRAYSCALE)

修改为

img_cv_grey = cv2_readimg(image,cv2.IMREAD_GRAYSCALE)

如下图:

解决easyocr不识别中文路径问题AttributeError: ‘NoneType‘ object has no attribute ‘shape‘_第2张图片

 

问题完美解决!

你可能感兴趣的:(python,python,opencv)