opencv官方文档上写的,https://docs.opencv.org/master/dc/d2e/tutorial_py_image_display.html

Color image loaded by OpenCV is in BGR mode. But Matplotlib displays in RGB mode. So color images will not be displayed correctly in Matplotlib if image is read with OpenCV. Please see the exercises for more details.

https://stackoverflow.com/questions/15072736/extracting-a-region-from-an-image-using-slicing-in-python-opencv/15074748#15074748

import cv2
import numpy as np
import matplotlib.pyplot as plt img = cv2.imread('messi4.jpg')
b,g,r = cv2.split(img)
img2 = cv2.merge([r,g,b])
#img2 = img[:,:,::-1]
plt.subplot(121);plt.imshow(img) # expects distorted color
plt.subplot(122);plt.imshow(img2) # expect true color
plt.show() cv2.imshow('bgr image',img) # expects true color
cv2.imshow('rgb image',img2) # expects distorted color
cv2.waitKey(0)
cv2.destroyAllWindows()

  

最新文章

  1. Yii2 事务操作
  2. react+redux完整项目
  3. uiimage 上传 数据库
  4. centos6.5搭建lnmp环境
  5. ecshop的商品系统数据库整合
  6. Codeforces Round #306 (Div. 2) D. Regular Bridge 构造
  7. Cocos移植到Android的一些问题-中文乱码问题
  8. 从 IT 的角度思考 BIM(一):面向对象
  9. Android Gson使用笔记
  10. [转] Linux下查看用户列表
  11. [Spring入门学习笔记][静态资源]
  12. MySQL5.5.源码安装
  13. 新书发布《每天5分钟玩转Docker容器技术》
  14. Python实操二
  15. IE内核浏览器的404页面问题和IE自动缓存引发的问题
  16. Runtime之方法
  17. K中心点算法之PAM
  18. POJ 2018 Best Cow Fences(二分最大区间平均数)题解
  19. 微信小程序开发 [05] wx.request发送请求和妹纸图
  20. PHP获取http头信息

热门文章

  1. 浅谈MongoDB基础及架构
  2. Spring Boot集成Druid数据库连接池
  3. Linux系统运行模式介绍
  4. Linux 如何用命令查看binlog文件的创建时间
  5. Codeforces A. Playlist(暴力剪枝)
  6. xcode运行demo报错:Failed to create provisioning profile.cannot be registered to your development team
  7. [考试]NOIP2015模拟题2
  8. python总结一
  9. Centos7之搜索命令locate
  10. 简单认识RTLO(Right-to-Left Override)