由于编码原因,opencv3.2无法用imread\imwrite直接读写含有中文字符的图像路径,
因此读写要用以下2个方法:
1
2
3
4
5
6
7
|
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) # 写 |
以上这篇解决Python3.5+OpenCV3.2读取图像的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u010627377/article/details/72388973