I haven't an idea what is wrong here.
import matplotlib.pyplot as plt
im = plt.imshow(plt.imread('tas.png'))
plt.show()
And the Y axis has inverted.
So I wrote an argument origin='lower'
.
im = plt.imshow(plt.imread('tas.png'), origin='lower')
plt.show()
And what I have got.
The Y axis came normally, but image now has been inverted.
Also when i try to re-scale axis X and Y, the image hasn't got smaller, only cut out piece.
Thank you in advance. I would be so grateful for some help.