<< SeparableFilter IPD - Image Processing Design ShowImage >>

IPD - Image Processing Design >> IPD - Image Processing Design > ShowColor Image

ShowColor Image

displays a color image in a figure window

Calling Sequence

FigureHandle = ShowColorImage(Image, Title);

Parameters

Image

3D matrix of type uint8, uint16, uint32 or double

Title

a string, can be empty

FigureHandle

handle to the window Image is displayed in

Description

ShowImage displays a color image in the current figure window. If no figure window exists, a new one is created.

You can display only one image in a window using this function. Displaying two or more images in the same window might yield unsatisfactory results.

Examples

global IPD_PATH;

RGB = ReadImage(IPD_PATH + 'demos\teaset.png');

FigureHandle = ShowColorImage(RGB, 'Color Image'); // image will be displayed

See also

<< SeparableFilter IPD - Image Processing Design ShowImage >>