Open TIF image stack
20 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I open a TIF image stack, so that I can use each of the images separatly?
1 Kommentar
Ajaykumar Zalavadia
am 24 Jan. 2019
I remeber using bfOpen3DVolume function from Bio-format matlab tools to open TIFF Image stack,
Download bfmatlab.zip from openmicroscopy.org website, here is the link
Extract the folder and add it to matlab path,
fileName = 'C:\fullPath\Filename.tif'; %Path to tiff file containing image stack
Data = bfOpen3DVolume(fileName);
imgStack=Data{1,1}{1,1};
figure; montage(imgStack,[])
Antworten (1)
Image Analyst
am 5 Sep. 2012
Did you use the Tiff class, introduced within the last few versions?
Siehe auch
Kategorien
Mehr zu Image Data finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!