I need to load into MATLAB a lot of .tiff files (a few thousands), and to speed the process I wanted to read only the interesting pixels (or index) from any file.
is there a way to do it without loading the full files?
Refer to the documentation on Read Specified Region of TIFF Image which alows you to read the specified region of the TIFF image. If that does not suit your needs then possibly reading in portions of it and cropping as you go can be a better option.
Side note: using the above facility will only be more efficient than reading the entire image in the case that the image was stored as tiles, in which case only the relevant tiles will be read from the file. Most casual tiff files are not tiled, but ones that are created for professional data use (such as official satellite images) might be tiled.
we have simulation that uses this images (we can save them in any format we desired) and we like to accelerate the simulink simulation (which 90% of the consumed time is the loading images)
for the time being, MAT files in -v7.3 loading partial image (by idx) give the best resaults, and we are looking for a way to accelerate it even more.(unfortanetly we need to use single at the time being)
https://github.com/striges/mexgdal is an interface to gdal which supports sparse tiff files, and can do so automatically (tiles with content 0 are not written if the flag is set)
imwrite() would not be suitable for writing selected tiles, but the Tiff() matlab class can do so. Your reading code would need to check which tiles existed. I think gdal's developed interface would be easier to deal with.
It even might happen to be the case that the new georaster function can read such a file; that would have to be tested
Note that the geotiff and gdal functions return full arrays and that Simulink has no sparse signal support. What you would gain would be in reduced file operations but full memory arrays would have to be used. But you could lose a lot of efficiency back if you were doing the tiff tile handling at the MATLAB level to reconstruct the entire matrix, which is one of the reasons I would suggest farming out to gdal for its built-in handling.
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
0 Comments
Sign in to comment.