Home > OS >  imshow subplot placement inside matplotlib figure
imshow subplot placement inside matplotlib figure

Time:05-14

I have a Python script that draws a matrix of images, each image is read from disk and is 100x100 pixels. Current result is:

enter image description here

CodePudding user response:

I realized it has to do with the dimensions passed to figsize. Since rows count is half the columns count, I need to pass figsize(width, width/2).

  • Related