当前位置:主页 > 软件编程 > Python代码 >

解决Python3.5+OpenCV3.2读取图像的问题

时间:2020-10-18 14:16:32 | 栏目:Python代码 | 点击:

由于编码原因,opencv3.2无法用imread\imwrite直接读写含有中文字符的图像路径,

因此读写要用以下2个方法:

import cv2 as c

import numpy as np

img=c.imdecode(np.fromfile(path,dtype=np.uint8),0) # 读。最后一个参数:0-灰度,1-彩色

c.imencode('.jpg',img)[1].tofile(path1) # 写

您可能感兴趣的文章:

相关文章