OpenCV_Python API 官方文档学习_ Using Matplotlib

OpenCV_Python API 官方文档学习_ Using Matplotlib

-------------------------------------------------------------------------------------------------------------------------------

Matplotlib是Python的绘图库,它为您提供了各种各样的绘图方法。读者如果有兴趣深入学习,建议可以去Matplotlib的官方网站去学习它的官方文档。在这里,我们将学习如何使用Matplotlib显示图像,缩放图像,保存图像等功能。

代码如下:

import numpy as np
import cv2
from matplotlib import pyplot as plt

img = cv2.imread('3.jpg',0)
plt.imshow(img, cmap = 'gray', interpolation = 'bicubic')
plt.xticks([]), plt.yticks([])  # to hide tick values on X and Y axis
plt.show()

OpenCV_Python API 官方文档学习_ Using Matplotlib_第1张图片


大写的警告!!!!!!!!!!!

OpenCV加载的彩色图像处于BGR模式。但是Matplotlib以RGB模式显示。因此,如果使用OpenCV读取图像,则Matplotlib中的彩色图像将无法正确显示。

所以!!!!!!!在使用OpenCV读取图片后,在Matplotlib中显示时,需要做处理!!

代码:

import cv2
import numpy as np
import matplotlib.pyplot as plt

img = cv2.imread('3.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()

未处理过直接使用的效果:

OpenCV_Python API 官方文档学习_ Using Matplotlib_第2张图片

处理过使用的效果:

OpenCV_Python API 官方文档学习_ Using Matplotlib_第3张图片

你可能感兴趣的:(OpenCV)