欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决python3中cv2读取中文路径的问题

程序员文章站 2022-04-17 10:49:39
如下所示: python3: img_path =  ' ' im = cv2.imdecode(np.fromfile(img_path,...

如下所示:

python3:

img_path =  ' '

im = cv2.imdecode(np.fromfile(img_path,dtype = np.uint8),-1)

save_path =  ' '

cv2.imencode('.jpg',im)[1].tofile(save_path)


python2.7:

img_path = ' '

im = cv2.imread(img_path.decode(‘utf-8'))

以上这篇解决python3中cv2读取中文路径的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。