Open TIF image stack
9 ビュー (過去 30 日間)
古いコメントを表示
How can I open a TIF image stack, so that I can use each of the images separatly?
1 件のコメント
Ajaykumar Zalavadia
2019 年 1 月 24 日
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,[])
回答 (1 件)
Image Analyst
2012 年 9 月 5 日
Did you use the Tiff class, introduced within the last few versions?
参考
カテゴリ
Help Center および File Exchange で Image Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!