python-3.x - 使用 plt.plot 与 plt.hist 的彩色图像直方图差异 [Python]

标签 python-3.x matplotlib computer-vision opencv python

我使用下面的代码通过两种方法生成彩色图像的直方图:

方法 1:-

  1. 使用cv2.calcHist()函数计算频率
  2. 使用 plt.plot() 生成频率线图

方法 2:-

  1. 使用plt.hist()函数计算并生成直方图(我添加了bin=250,以便2个直方图一致)

观察:两个直方图大致相似。第一个直方图(使用 plt.plot)看起来非常平滑。然而,第二个直方图(使用 plt.hist)有额外的尖峰和下降。

问题:由于图像只有 int 值,因此不应出现不一致的分箱。 histogram-2 中出现这些额外的峰值和下降的原因是什么?

    blue_bricks = cv2.imread('Computer-Vision-with-Python/DATA/bricks.jpg')
    
    fig = plt.figure(figsize=(17,10))
    color = ['b','g','r']
    
    # Histogram Type-1
    fig.add_subplot(2,2,1)
    
    for i,c in enumerate(color): 
        hist = cv2.calcHist([blue_bricks], mask=None, channels=[i], histSize=[256], ranges=[0,256])
        plt.plot(hist,color=c)    
    plt.title('Histogram-1')
    
    # Histogram Type-2
    fig.add_subplot(2,2,2)
    
    for i,c in enumerate(color):
        plt.hist(blue_bricks[:,:,i].flatten(),color=c, alpha=0.5, bins=250)
    plt.title('Histogram-2')

enter image description here

最佳答案

bins=250 在最低值和最高值之间创建 251 个等距的 bin 边缘。这些与离散值不太吻合。当最高值和最低值之差大于 250 时,某些 bin 将会为空。当差异小于 250 时,某些 bin 将获取两个相邻数字的值,从而产生峰值。此外,在叠加直方图时,所有直方图都使用完全相同的 bin 边缘会很方便。

您需要 bin 恰好位于整数值之间,设置 bins=np.arange(-0.5, 256, 1) 即可实现此目的。或者,您可以使用seaborn的histplot(....,离散=True)

下面是一些带有较小数字的代码来说明正在发生的情况。

import matplotlib.pyplot as plt
import numpy as np

fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2, figsize=(12, 3))

for ax in (ax1, ax2, ax3, ax4):
    if ax in [ax1, ax3]:
        x = np.arange(1, 10)
    else:
        x = np.arange(1, 12)
    if ax in [ax1, ax2]:
        bins = 10
    else:
        bins = np.arange(0.5, x.max() + 1, 1)
    _, bin_edges, _ = ax.hist(x, bins=bins, ec='white', lw=2)
    ax.vlines(bin_edges, 0, 2.5, color='crimson', ls='--')
    ax.scatter(x, [2.2] * len(x), color='lime', s=50)
    ax.set_title((f"{bins} bins" if type(bins) == int else "discrete bins") + f', {len(x)} values')
    ax.set_xticks(x)
    ax.set_yticks([0, 1, 2])
plt.tight_layout()
plt.show()

histogram with non-aligned bins

关于python-3.x - 使用 plt.plot 与 plt.hist 的彩色图像直方图差异 [Python],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67855101/

相关文章:

python - 使用Python 3.x打印实时SSH输出

python-3.x - Pandas Groupby 与 Group Concat 用于整数值

python - 需要帮助理解 sklearn python 中的 cross_val_score

python - 由于使用 PyTesseract 的背景颜色,无法从屏幕截图中读取文本

image-processing - 卡尔曼滤波器 : some doubts

python - 如何在 Windows/Linux 中重新运行进程 python?

multithreading - 实例方法上的Python ThreadPoolExecutor

python - 通过颜色定义从绘图中排除点?

python - 将绘图中的线条与 matplotlib 图例中错误栏中的标记组合起来

python - 用于 Latex 轴刻度标签的无衬线字体