Open TIF image stack

조회 수: 19 (최근 30일)
Bernoulli Lizard
Bernoulli Lizard 2012년 9월 5일
댓글: Ajaykumar Zalavadia 2019년 1월 24일
How can I open a TIF image stack, so that I can use each of the images separatly?
  댓글 수: 1
Ajaykumar Zalavadia
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
Image Analyst 2012년 9월 5일
Did you use the Tiff class, introduced within the last few versions?
  댓글 수: 8
Bernoulli Lizard
Bernoulli Lizard 2012년 9월 6일
I'm not really sure. It looks like one file, but when it is opened [in ImagaeJ] it has several separate images that you can scroll through.
I can open the file using [FileName1, PathName1] = uigetfile({'*.tif', 'Image Files (*.tif)'}, 'Choose the image to open.'); % Open Image File
but I do not know how I can call and handle the individual images in it.
Walter Roberson
Walter Roberson 2012년 9월 6일

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by