I have a Python script that draws a matrix of images, each image is read from disk and is 100x100 pixels. Current result is:
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)
.