赞
踩
#图像灰化处理并归一化 img = io.imread('horse.jpg',as_gray=True) #注意!!这里灰度化后直接就是归一化的值,,不是原rgb值!! print(img.shape) print(img.dtype) # 数据类型位float print(img.size) print(img) io.imshow(img) io.show()
cv2.imread('IMG_5524.jpg',cv2.IMREAD_GRAYSCALE)
这里的灰度化后,是没有归一化的值,不一样!!!
#读取图片,灰度化,转换为数组,L = 0.299R + 0.587G + 0.114B。'f'为float类型
img = np.array(Image.open(imgfile).convert('L'), 'f')
print("Image方法的结果如下:")
print('大小:{}'.format(img.shape))
print("类型:%s" % type(img))
print(img)
这个灰度值也是没有归一化的值
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。