MATLAB: How to stack a sequence of pictures into one.

imagingmulti-page tiff image

I would like to stack a sequence of images into 1 tiff file.
After I specify the data (file path and fille name), I tried to run the following codes.
options.maxLoop=100;
options.previousRefFlag=0;
end
ta=datevec(now);
data=single(loadImgSequence(filePath,file))
data=single(loadImgSequence(filePath,file))
However the error showed up when I ran "data=single(loadImgSequence(filePath,file))"
Do you know why this happened?
I appreciate your help.

Best Answer

Read about montage
Related Question