Python 踩过的坑

【1】UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 15-16: invalid continuation byte 

 case:with open("D:/360MoveData/Users/2506/Desktop/ASRS data/result-synopis.xlsx", "r",encoding = 'utf8') as f:

 solution:"r" into "rb"
【2】

OpenCV Error: (-215)size.width>0 && size.height>0 in function imshow

或者

cv2.imread always returns NoneType 



这样的问题时,可以尝试以下的解决方案:



(1)可能是你的opencv版本过低的原因

在控制台进行安装  pip install --upgrade opencv-python

(2)可能是你import的图像存储路径的原因

错误:C:\Users\2506\Desktop\2nd paper\demo1.jpg

正确:C:/Users/2506/Desktop/2nd paper/demo1.jpg

 

你可能感兴趣的:(Debug,debug)