Name
disp_channeldisp_channelDispChannelDispChannel — Displays images with several channels.
disp_channeldisp_channelDispChannelDispChannelDispChannel displays an image in the output window.
It is possible to display several images with one call. In this case the
images are displayed one after another. If the definition domains of the
images overlap only the last image is visible. The parameter
ChannelChannelChannelChannelchannel defines the number of the channel that is displayed.
For RGB-images the three color channels have to be used within a tuple
parameter. For more information see disp_imagedisp_imageDispImageDispImageDispImage.
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Multichannel images to be displayed.
Number of channel or the numbers of the RGB-channels
Default value: 1
Suggested values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
read_image(Image,'patras')
count_channels (Image, Channels)
for I := 1 to Channels by 1
disp_channel (Image, WindowHandle, I)
endfor
read_image(Image,"patras") ;
count_channels (Image, &Channels)
for (i = 1; i <= Channels; i++) {
disp_channel (Image, WindowHandle, i) ;
}
read_image(Image,'patras')
count_channels (Image, Channels)
for I := 1 to Channels by 1
disp_channel (Image, WindowHandle, I)
endfor
read_image(Image,'patras')
count_channels (Image, Channels)
for I := 1 to Channels by 1
disp_channel (Image, WindowHandle, I)
endfor
read_image(Image,'patras')
count_channels (Image, Channels)
for I := 1 to Channels by 1
disp_channel (Image, WindowHandle, I)
endfor
If the used images contain valid values and a correct
output mode is set, disp_channeldisp_channelDispChannelDispChannelDispChannel returns 2 (H_MSG_TRUE). Otherwise an
exception is raised.
open_windowopen_windowOpenWindowOpenWindowOpenWindow,
set_rgbset_rgbSetRgbSetRgbSetRgb,
set_lutset_lutSetLutSetLutSetLut,
set_hsiset_hsiSetHsiSetHsiSetHsi
disp_imagedisp_imageDispImageDispImageDispImage,
disp_colordisp_colorDispColorDispColorDispColor
open_windowopen_windowOpenWindowOpenWindowOpenWindow,
reset_obj_dbreset_obj_dbResetObjDbResetObjDbResetObjDb,
set_lutset_lutSetLutSetLutSetLut,
dump_windowdump_windowDumpWindowDumpWindowDumpWindow
Foundation