AttributeError: ‘JpegImageFile’ object has no attribute ‘shape’
程序中由于是利用opencv 读取图片格式和PIL中Image 读取的图片格式差异问题导致的,解决方法就是在save操作之前,将图片的格式转化一下 ,将opencv 读取的图片转化成PIL Image 的格式。
转换方法:
opencv 转换成 PIL.Image:
Img= Image.fromarray(cv.cvtColor(Img,cv2.COLOR_BGR2RGB))