フォルダ内の画像を一覧表示して確認したいです.
N×N(3×3など)の表示は上手くいきます.
N×M(6×11など)の表示方法を教えて下さい.
# pm × pm 枚配置 pm = 3 files = glob.glob("dir" + "/*.png") d = [] for i in natsorted(files): img = Image.open(i) img = np.asarray(img) d.append(img) fig, ax = plt.subplots(pm, pm, figsize=(8, 8)) fig.subplots_adjust(hspace=0, wspace=0) for i in range(pm): for j in range(pm): ax[i, j].xaxis.set_major_locator(plt.NullLocator()) ax[i, j].yaxis.set_major_locator(plt.NullLocator()) ax[i, j].imshow(d[pm*i+j], cmap="spring") plt.show()
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/18 13:15