Answers for "matplotlib image in subplot"

1

images subplot python

_, 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()
Posted by: Guest on March-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language