淘先锋技术网

首页 1 2 3 4 5 6 7

opencv的接口使用BGR,而matplotlib.pyplot 则是RGB模式

可以指定rgb显示方式

b,g,r = cv2.split(image)
image_rgb = cv2.merge([r,g,b])