I'm using plt.imread
for reading big .tiff images.
Because of the big dimensions, I would like to select just a part of the image to be loaded.
I would like to do something like:
plt.imread(filename, [s1:s2, r1:r2])
choosing the initial and final pixel for both dimensions.
Is there a way to do this?
Many thanks