由以下函数代替该功能:
1
2
3
|
def cv_imread(file_path):
cv_img = cv2.imdecode(np.fromfile(file_path,dtype = np.uint8), - 1 )
return cv_img
|
1
2
|
def cv_imwrite(filename,src):
cv2.imencode( '.jpg' ,src)[ 1 ].tofile(filename)
|
以上这篇解决Python下imread,imwrite不支持中文的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_40250862/article/details/81316366