I need to load image *.tif
for process it in GDAL. I use this code:
data = gdal.Open("a.tif", gdal.GA_ReadOnly)
img = data.ReadAsArray()
All works well on small images (~10Mb). But when i try to load bigger image (~1Gb) it start to use a lot of memory (~15Gb RAM). How I can load this image by a chunks for sequential processing?
Thanks!