Convert hyperspectral image between .mat and .tif format
4 次查看(过去 30 天)
显示 更早的评论
If I have image that consists of hundreds of bands in .mat format, how can I convert it to .tif format with the same number of bands without data loss (, which can be analyzed with remote sensing software later on)? (e.g. PaviaU with 103 bands)
Vice versa, how can I convert the image in .tif format (,possibly product from remote sensing software,) to .mat format with the same number of bands without data loss for further process in MATLAB?
Thank you!
0 个评论
回答(1 个)
Walter Roberson
2017-12-25
Generally speaking you would use the TIFF Class https://www.mathworks.com/help/matlab/ref/tiff-class.html for this work. But TIFF can represent multiple bands in different ways so you need to know which of the ways is expected by the other software.
You could also consider using imwrite() with 'WriteMode', 'append'
2 个评论
Walter Roberson
2017-12-26
https://www.mathworks.com/help/matlab/import_export/importing-images.html#br_c8to-1 for code that deals with reading TIFF files that have subimages.
If you do not have subimages, then supposing you have an array Image103 that is something by something by 103, then
nband = size(Image103, 3);
for K = 1 : nband
if K == 1
imwrite(Image103(:,:,K), 'Image103.tif');
else
imwrite(Image103(:,:,K), 'Image103.tif', 'WriteMode', 'append');
end
end
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!