I want to plot a list of images. However, the plots are too small, so I cannot see them well. I tried to increase the size but the output is not really what i wanted.
I know there are lot of examples out there, but they are mostly contain mostly overkill solutions.
plt.figure(figsize=(30, 100))
for img in images:
plt.subplots(n_img, 1, figsize=(8,10))
plt.imshow(im, 'gray')
plt.axis('off')
plt.tight_layout()
plt.show()
Thanks