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