set_hsiT_set_hsiSetHsiSetHsiset_hsi (Operator)

Name

set_hsiT_set_hsiSetHsiSetHsiset_hsi — Define output colors (HSI-coded).

Signature

set_hsi( : : WindowHandle, Hue, Saturation, Intensity : )

Herror T_set_hsi(const Htuple WindowHandle, const Htuple Hue, const Htuple Saturation, const Htuple Intensity)

void SetHsi(const HTuple& WindowHandle, const HTuple& Hue, const HTuple& Saturation, const HTuple& Intensity)

void HWindow::SetHsi(const HTuple& Hue, const HTuple& Saturation, const HTuple& Intensity) const

void HWindow::SetHsi(Hlong Hue, Hlong Saturation, Hlong Intensity) const

static void HOperatorSet.SetHsi(HTuple windowHandle, HTuple hue, HTuple saturation, HTuple intensity)

void HWindow.SetHsi(HTuple hue, HTuple saturation, HTuple intensity)

void HWindow.SetHsi(int hue, int saturation, int intensity)

def set_hsi(window_handle: HHandle, hue: MaybeSequence[int], saturation: MaybeSequence[int], intensity: MaybeSequence[int]) -> None

Description

set_hsiset_hsiSetHsiSetHsiSetHsiset_hsi sets the region output color(s)/gray value(s) for the valid window. Colors are passed as HueHueHueHuehuehue, SaturationSaturationSaturationSaturationsaturationsaturation, and IntensityIntensityIntensityIntensityintensityintensity. Transformation from HSI to RGB is done with:

The value range is clipped to 0 to 255.

If only one combination is passed, all output will take place in that color. If a tuple of colors is passed, the output color of regions and geometric objects is modulo to the number of colors. HALCON always begins output with the first color passed. Note, that the number of output colors depends on the number of objects that are displayed in one operator call. If only single objects are displayed, they always appear in the first color, even if the consist of more than one connected components.

Selected colors are used until the next call of set_colorset_colorSetColorSetColorSetColorset_color,set_rgbset_rgbSetRgbSetRgbSetRgbset_rgb or set_grayset_graySetGraySetGraySetGrayset_gray. Colors are relevant to windows, i.e., only the colors of the valid window can be set. Region output colors are used by operators like disp_regiondisp_regionDispRegionDispRegionDispRegiondisp_region, disp_linedisp_lineDispLineDispLineDispLinedisp_line, disp_rectangle1disp_rectangle1DispRectangle1DispRectangle1DispRectangle1disp_rectangle1, disp_rectangle2disp_rectangle2DispRectangle2DispRectangle2DispRectangle2disp_rectangle2, disp_arrowdisp_arrowDispArrowDispArrowDispArrowdisp_arrow, etc. It is also used by operators with gray value output in certain output modes (e.g., '3d_plot'"3d_plot""3d_plot""3d_plot""3d_plot""3d_plot", see set_paintset_paintSetPaintSetPaintSetPaintset_paint).

Attention

The colors are internally stored as RGB triples. Some HSI triples can not be represented by a valid RGB triple (i.e. in the range 0..255). In this case the nearest color which can be represented is used instead.

Execution Information

Parameters

WindowHandleWindowHandleWindowHandleWindowHandlewindowHandlewindow_handle (input_control)  window HWindow, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Window handle.

HueHueHueHuehuehue (input_control)  integer(-array) HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Hue for region output.

Default value: 30

Typical range of values: 0 ≤ Hue Hue Hue Hue hue hue ≤ 255

Restriction: 0 <= Hue && Hue <= 255

SaturationSaturationSaturationSaturationsaturationsaturation (input_control)  integer(-array) HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Saturation for region output.

Default value: 255

Typical range of values: 0 ≤ Saturation Saturation Saturation Saturation saturation saturation ≤ 255

Restriction: 0 <= Saturation && Saturation <= 255

IntensityIntensityIntensityIntensityintensityintensity (input_control)  integer(-array) HTupleMaybeSequence[int]HTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Intensity for region output.

Default value: 84

Typical range of values: 0 ≤ Intensity Intensity Intensity Intensity intensity intensity ≤ 255

Restriction: 0 <= Intensity && Intensity <= 255

Result

set_hsiset_hsiSetHsiSetHsiSetHsiset_hsi returns TRUE if the window is valid and the output colors are displayable. Otherwise an exception is raised.

Possible Predecessors

get_hsiget_hsiGetHsiGetHsiGetHsiget_hsi

Possible Successors

disp_regiondisp_regionDispRegionDispRegionDispRegiondisp_region

See also

get_hsiget_hsiGetHsiGetHsiGetHsiget_hsi, trans_from_rgbtrans_from_rgbTransFromRgbTransFromRgbTransFromRgbtrans_from_rgb, trans_to_rgbtrans_to_rgbTransToRgbTransToRgbTransToRgbtrans_to_rgb, disp_regiondisp_regionDispRegionDispRegionDispRegiondisp_region

Module

Foundation