How to access tiff files
1 次查看(过去 30 天)
显示 更早的评论
Hello MatLab world.
I have several .tiif files in my hands that I need to access, read and extract certain data from. As it is the first time that I'm handlind .tiff, I need your lights.
I have 102 folders (daily data from 01/07/2019 to 10/10/2019: 102 days=102 folders) . Each folder contains a zipped file with 73 .tiff files. These .tiff files contain hourly temperature data.
First thing I must extract only the first 24 of the 73 as they represent the 24 hourly values of the first day. Second thing, I must access the data these 24 .tiff contain and locate the temperature values I need.
I am copying the few lines of code I have written and please enlighten me:
cd 'C:\Projects\LIFE ASTI\C.3\THESSTemperature'
t = Tiff('THESSTemperature_20190701T0000Z.tiff','r');
filename = 'THESSTemperature_20190701T0000Z.tiff';
imageData = read(t);
imshow(imageData);
info = imfinfo(filename)
Thank you in advance!
0 个评论
回答(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!