<< SeparableFilter Image Processing Design ShowImage >>

Image Processing Design >> Image Processing Design > ShowColor Image

ShowColor Image

は色画像をウィンドーに表示する

呼び出し

FigureHandle = ShowColorImage(Image, Title);

引数

Image

3次元の行列で、型はuint8、uint16、uint32又はdoubleである

Title

文字列である

FigureHandle

Imageが表示されるウィンドーへのハンドル

説明

本関数は色画像を現在のウィンドーに表示する。ウィンドーは存在しないと、新規なウィンドーが生成される。

本関数を用いてウィンドー1つに画像1枚表示できます。画像2つ以上を同じウィンドーに表示すると、結果は望ましくない可能性がある。

global IPD_PATH;

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

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

参考


Report an issue
<< SeparableFilter Image Processing Design ShowImage >>