python opencv 读取中文路径图片
时间: 2023-07-07 16:08:30 浏览: 167
Python OpenCV读取中文路径图像的方法
在Python中使用OpenCV读取中文路径图片,可以采用以下步骤:
1. 将中文路径转换成unicode编码的路径,可以使用如下代码:
```python
import os
img_path = u'中文路径/图片.jpg'
img_path = img_path.encode('utf-8')
img_path = os.path.abspath(img_path)
```
2. 使用OpenCV读取图片,注意要使用unicode编码的路径:
```python
import cv2
img = cv2.imread(img_path)
```
这样就可以读取中文路径的图片了。
阅读全文