displays a color image in a figure window
FigureHandle = ShowColorImage(Image, Title);
3D matrix of type uint8, uint16, uint32 or double
a string, can be empty
handle to the window Image is displayed in
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.
global IPD_PATH; RGB = ReadImage(IPD_PATH + 'demos\teaset.png'); FigureHandle = ShowColorImage(RGB, 'Color Image'); // image will be displayed | ![]() | ![]() |