图像切分合并通道

image = imread('test.jpg')
image.shape

#切分通道
(R, G, B) = cv2.split(image)
#合并通道
merged = cv2.merge([R,G,B])
show(merged)
原文地址:https://www.cnblogs.com/yunshangyue71/p/13584484.html