opencv 读取和写入路径有汉字的处理方法
Posted AI浩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv 读取和写入路径有汉字的处理方法相关的知识,希望对你有一定的参考价值。
读取图片:
img_gt = cv2.imdecode(np.fromfile(path, dtype=np.uint8), -1)
img_gt = cv2.cvtColor(img_gt, cv2.IMREAD_COLOR)
写入图片:
write_path=f'save_dir/imgname.jpg'
cv2.imencode('.jpg', output)[1].tofile(write_path) # 保存图片
以上是关于opencv 读取和写入路径有汉字的处理方法的主要内容,如果未能解决你的问题,请参考以下文章
解决方法:opencv读取中文路径图像报错 | AttributeError: ‘NoneType‘ object has no attribute ‘astype‘
解决方法:opencv读取中文路径图像报错 | AttributeError: ‘NoneType‘ object has no attribute ‘astype‘