标签:class span mda 坐标系统 工具包 rom 加法 utils 反射
#导入工具包,参考第1节
from imutils import *
1 image = imread(‘image.jpg‘) 2 (R, G, B) = cv2.split(image) 3 zeros = np.zeros(image.shape[:2],dtype=‘uint8‘) 4 show(cv2.merge([R,zeros,zeros])) 5 show(cv2.merge([zeros,G,zeros])) 6 show(cv2.merge([zeros,zeros,B]))
image = imread(‘image.jpg‘) lab = cv2.cvtColor(image, cv2.COLOR_RGB2LAB) # zeros = np.zeros(image.shape[:2],dtype=‘uint8‘) for (name,chan) in zip((‘L‘,‘A‘,‘B‘), cv2.split(lab)): cv2.imshow(name,chan) cv2.waitKey(0) cv2.destroyAllWindows()
# Grayscale
灰阶图像就是黑白图片,通过调节灰度值来显示影像
image = cv2.imread(‘image.jpg‘) gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) cv2.imshow(‘original‘,image) cv2.imshow(‘gray‘,gray) cv2.waitKey(0) cv2.destroyAllWindows()
标签:class span mda 坐标系统 工具包 rom 加法 utils 反射
原文地址:https://www.cnblogs.com/liuwenhua/p/11565192.html