问题: 使用cv2.imread
读取含有中文路径的图片时,返回None
。这个很坑,不会报错,但是你用img.shape等函数,又说这个对象没有该方法。原来在img是None导致。
原因: opencv不接受non-ascii的路径。
解决方法: 先用np.fromfile()
读取为np.uint8
格式,再使用cv2.imdecode()
解码。
#读取灰度图,单通道的
im = cv2.imdecode(np.fromfile(filename, dtype=np.uint8), cv2.IMREAD_GRAYSCALE)
#读取彩图
# -*- coding: utf-8 -*-
import numpy as np
import urllib
import cv2
url = 'http://www.pyimagesearch.com/wp-content/uploads/2015/01/google_logo.png'
resp = urllib.urlopen(url)
image = np.asarray(bytearray(resp.read()), dtype="uint8")
image = cv2.imdecode(image, cv2.IMREAD_COLOR)
---------------------
cv2.imdecode()函数从指定的内存缓存中读取数据,并把数据转换(解码)成图像格式;
主要用于从网络传输数据中恢复出图像。
import cv2
im = cv2.imdecode(np.fromfile(r'C:\Users\83815\Desktop\1\1.jpg', dtype=np.uint8), cv2.IMREAD_GRAYSCALE) cv2.imwrite(r'C:\Users\83815\Desktop\1\2.jpg',im) 上面执行成功,说明cv2.imread()和cv2.imdecode()函数读取出来是一样的。
参考:https://www.e-learn.cn/content/python/572978
:https://blog.csdn.net/dcrmg/article/details/79155233