Open TIF image stack
이전 댓글 표시
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일
0 개 추천
Did you use the Tiff class, introduced within the last few versions?
댓글 수: 8
Bernoulli Lizard
2012년 9월 5일
Image Analyst
2012년 9월 5일
Here's a snippet from the help:
Tiff class
MATLAB Gateway to LibTIFF library routines
Description
The Tiff class represents a connection to a Tagged Image File Format (TIFF) file and provides access to many of the capabilities of the LibTIFF library. Use the methods of the Tiff object to call routines in the LibTIFF library. While you can use the imread and imwrite functions to read and write TIFF files, the Tiff class offers capabilities that these functions don't provide, such as reading subimages, writing tiles and strips of image data, and modifying individual TIFF tags.
Bernoulli Lizard
2012년 9월 5일
Sean de Wolski
2012년 9월 5일
doc tiff
It even has an example...
Bernoulli Lizard
2012년 9월 6일
Walter Roberson
2012년 9월 6일
What is an "image stack" in this context? Is it a series of TIFF files, or is it a single TIFF file that stores several images? If it is a single TIFF file, then you use the facilities for reading "subimages"
Bernoulli Lizard
2012년 9월 6일
Walter Roberson
2012년 9월 6일
카테고리
도움말 센터 및 File Exchange에서 Image Data에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!