read images from multiple image tif file

8 visualizaciones (últimos 30 días)
Turbulence Analysis
Turbulence Analysis el 7 de Oct. de 2020
Respondida: Mann Baidi el 3 de Abr. de 2024 a las 6:48
Hi,
I am having the single .tif file which contains three image file. However, while reading it shows only teh first image. For instance, I if would like to read 2, 3 image from the single .tif file, how to do this ???
  2 comentarios
KSSV
KSSV el 7 de Oct. de 2020
Check the dimensions of the image read. Is it a geotiff file?
Turbulence Analysis
Turbulence Analysis el 7 de Oct. de 2020
It got three images of size 706 x 775.. Above is the link to donload the file..

Iniciar sesión para comentar.

Respuestas (1)

Mann Baidi
Mann Baidi el 3 de Abr. de 2024 a las 6:48
Hi,
As per the understanding of the question, you would like to read multiple images from a multi-frame tiff file.
Assuming you are reading the file using the 'imread' function in MATLAB. This by defualt reads the first frame of the tiff image. For reading the other frames, you have to pass the frame number as parameter to the "imread" function as mentioned below:
imread("path/to/image",<frameNumber>);
Here is an example for reading a multi-level tiff file:
tiffFilePath = 'path/to/image.tiff';
% Read the multiple frames TIFF file
tiffInfo = imfinfo(tiffFilePath);
% Loop through each frame and save it as a JPEG image
for frame = 1:numel(tiffInfo)
% Read the current frame
imageData = imread(tiffFilePath, frame);
imshow(imageData)
end
Hope this will help in resolving your query!

Categorías

Más información sobre Data Import and Analysis en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by