Reads multi pages image file
im = imreadmulti(filename) im = imreadmulti(filename,modes)
A string, the image filename to be read.
imread mode to be specified for different image format
All images will be converted to gray images or RGB images. For gray images, this is a MxN unsigned char matrix; For RGB images, this is a MxNx3 unsigned char matrix.
imreadmulti reads multi pages image files into Scilab as 4 dimentions matrix.
im = imreadmulti(fullpath(getIPCVpath() + "/images/" + 'img_multipage.tiff')); imshow(im(:,:,:,1); | ![]() | ![]() |