<< imreadmulti Image Reading, Display and Exploration imwrite >>

IPCV >> Image Reading, Display and Exploration > imshow

imshow

Display image in graphic window

Syntax

imshow(im)
imshow(im, varargin)
imshow(im, [colormap, outopt, handle])

Parameters

im :

Input image

varargin (colormap):

Colormap for the image, defined in Nx3 matrix

varargin (outopt) :

Output options, 0 for Scilab graphics, 1 for uicontrol, 2 for tcl/tk

varargin (handle) :

Handle for which the image will shown

Description

Show images in different types, double (0-1), uint8(0-255), binary, and others supported image datatype.

Examples

im = imread(fullpath(getIPCVpath() + "/images/baboon.png"));
imshow(im);
f = scf();
imshow(im, 1);
if with_tk() then
imshow(im, 2);
end

See also

Authors


Report an issue
<< imreadmulti Image Reading, Display and Exploration imwrite >>