opencv-python ,CV2读取中文路径和中文名称图片无结果,解决办法
python中用的 是utf-8编码,而opencv用的是gbk,要用numpy先读一下,另外写文件也是一个道理。 def cv_imread(file_path = ""): img_mat=cv2.imdecode(np.fromfile(file_path,dtype=np.uint8),-1) return img_mat
凤舞九天
python中用的 是utf-8编码,而opencv用的是gbk,要用numpy先读一下,另外写文件也是一个道理。 def cv_imread(file_path = ""): img_mat=cv2.imdecode(np.fromfile(file_path,dtype=np.uint8),-1) return img_mat