<< imresize SIVP - Scilab Image and Video Processing Toolbox imsubtract >>

SIVP - Scilab Image and Video Processing Toolbox >> SIVP - Scilab Image and Video Processing Toolbox > imshow

imshow

Displays images in graphic window

Calling Sequence

imshow(im)

Parameters

im
MxN matrix, a grayscale (0-255 range) image, or MxNx3, a color (0-255 range) image.

Description

imshow(im)
imshow can only show images in 0-255 range. Before showing a image, it convert im to unsigned char first using uint8().

Examples

im = imread(SCI + '/contrib/sivp/images/lena.png');
imshow(im);

Bugs and Shortcomings

imshow using an interface developed by SIVP, not the figure object using in Scilab. Only one imshow window can pop up.

Authors

Availability

The latest version of SIVP can be found at

http://sivp.sf.net

See Also

<< imresize SIVP - Scilab Image and Video Processing Toolbox imsubtract >>