直方图匹配#

此示例演示了直方图匹配的功能。它操纵输入图像的像素,使其直方图与参考图像的直方图匹配。如果图像具有多个通道,则只要输入图像和参考图像的通道数相等,每个通道就会独立进行匹配。

直方图匹配可用作图像处理(如特征匹配)的轻量级归一化,尤其是在图像来自不同来源或在不同条件下(即照明)拍摄的情况下。

import matplotlib.pyplot as plt

from skimage import data
from skimage import exposure
from skimage.exposure import match_histograms

reference = data.coffee()
image = data.chelsea()

matched = match_histograms(image, reference, channel_axis=-1)

fig, (ax1, ax2, ax3) = plt.subplots(
    nrows=1, ncols=3, figsize=(8, 3), sharex=True, sharey=True
)
for aa in (ax1, ax2, ax3):
    aa.set_axis_off()

ax1.imshow(image)
ax1.set_title('Source')
ax2.imshow(reference)
ax2.set_title('Reference')
ax3.imshow(matched)
ax3.set_title('Matched')

plt.tight_layout()
plt.show()
Source, Reference, Matched

为了说明直方图匹配的效果,我们针对每个 RGB 通道绘制直方图和累积直方图。显然,匹配后的图像在每个通道上都与参考图像具有相同的累积直方图。

fig, axes = plt.subplots(nrows=3, ncols=3, figsize=(8, 8))


for i, img in enumerate((image, reference, matched)):
    for c, c_color in enumerate(('red', 'green', 'blue')):
        img_hist, bins = exposure.histogram(img[..., c], source_range='dtype')
        axes[c, i].plot(bins, img_hist / img_hist.max())
        img_cdf, bins = exposure.cumulative_distribution(img[..., c])
        axes[c, i].plot(bins, img_cdf)
        axes[c, 0].set_ylabel(c_color)

axes[0, 0].set_title('Source')
axes[0, 1].set_title('Reference')
axes[0, 2].set_title('Matched')

plt.tight_layout()
plt.show()
Source, Reference, Matched

脚本的总运行时间:(0 分钟 1.125 秒)

由 Sphinx-Gallery 生成的图库