how can i load into MATLAB specific pixels of a .tiff file?
13 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
Pratheek Punchathody
2021 年 1 月 22 日
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.
4 件のコメント
Walter Roberson
2021 年 1 月 24 日
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.
Walter Roberson
2021 年 1 月 24 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!