时间: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) # 写