opencv的接口使用BGR,而matplotlib.pyplot 则是RGB模式
可以指定rgb显示方式
b,g,r = cv2.split(image) image_rgb = cv2.merge([r,g,b])