<< imread Image Reading, Display and Exploration imshow >>

IPCV >> Image Reading, Display and Exploration > imreadmulti

imreadmulti

Reads multi pages image file

Syntax

im = imreadmulti(filename)
im = imreadmulti(filename,modes)

Parameters

filename :

A string, the image filename to be read.

modes :

imread mode to be specified for different image format

im :

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.

Description

imreadmulti reads multi pages image files into Scilab as 4 dimentions matrix.

Examples

im = imreadmulti(fullpath(getIPCVpath() + "/images/" + 'img_multipage.tiff'));
imshow(im(:,:,:,1);

See also

Authors


Report an issue
<< imread Image Reading, Display and Exploration imshow >>