如何在 Matplotlib 中以具有不同通道的不同颜色显示图像?
若要使用 misc.imread 将图像切片为红色、绿色和蓝色通道,我们可以采取以下步骤 −
- 设置图形大小并调整子图之间以及周围的边距。
- 从文件中读取图像到一个数组中。
- 制作颜色图和标题列表。
- 创建一个图形和一组子图。
- 将坐标轴、图像、标题和颜色图压缩在一起。
- 迭代压缩的对象,并设置每个通道图像的标题。
- 若要显示图形,请使用show() 方法。
示例
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True image = plt.imread('bird.png') titles = ['With red channel', 'With green channel', 'With blue channel'] cmaps = [plt.cm.Reds_r, plt.cm.Greens_r, plt.cm.Blues_r] fig, axes = plt.subplots(1, 3) objs = zip(axes, (image, *image.transpose(2, 0, 1)), titles, cmaps) for ax, channel, title, cmap in objs: ax.imshow(channel, cmap=cmap) ax.set_title(title) ax.set_xticks(()) ax.set_yticks(()) plt.show()
输入图像
输出图像
广告