numpy和matplotlib绘制直方图
Posted pclover11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numpy和matplotlib绘制直方图相关的知识,希望对你有一定的参考价值。
使用 Matplotlib Matplotlib 中有直方图绘制函数:matplotlib.pyplot.hist()它可以直接统计并绘制直方图。你应该使用函数 calcHist() 或 np.histogram()统计直方图。
1 使用pyplot.hist() 显示灰度图像直方图,代码如下:
import cv2 import numpy as np from matplotlib import pyplot as plt img = cv2.imread(‘image/lufei.jpeg‘,0) plt.hist(img.ravel(),255,[0,256]); plt.title("Matplotlib Method") plt.show()
2 使用使用函数 calcHist() 分别统计BGR 颜色通道直方图
import cv2 import numpy as np from matplotlib import pyplot as plt img = cv2.imread(‘image/lufei.jpeg‘) color = (‘b‘,‘g‘,‘r‘) for i,col in enumerate(color): histr = cv2.calcHist([img], [i], None, [256], [0,256]) plt.plot(histr,color = col) plt.xlim([0,256]) plt.title("Matplotlib color Method") plt.show()
结果图:
以上是关于numpy和matplotlib绘制直方图的主要内容,如果未能解决你的问题,请参考以下文章
python matplotlib画的直方图怎么加两条竖线做参考线