📜  图像 subplot python 代码示例

📅  最后修改于: 2022-03-11 14:45:46.086000             🧑  作者: Mango

代码示例1
_, axs = plt.subplots(n_row, n_col, figsize=(12, 12))
axs = axs.flatten()
for img, ax in zip(imgs, axs):
    ax.imshow(img)
plt.show()