You are here: Start » FIL.NET » Invoke.ThresholdImage_HSx
Transforms each pixel value to minimum or maximum depending on whether it belongs to specified region in the HSV, HSL or HSI color space.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ThresholdImage_HSx ( Fil.Image inRgbImage, Optional<Fil.Region> inRoi, Fil.HSxColorModel inColorModel, int inBeginHue, int inEndHue, Optional<int> inMinSaturation, Optional<int> inMaxSaturation, Optional<int> inMinBrightness, Optional<int> inMaxBrightness, float inFuzziness, Fil.Image outMonoImage, Diagnostic<Fil.Image> diagHSxImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inRgbImage | Fil.Image | Input image in the RGB color space. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Region of interest. Default value: ftl::NIL. | ||
![]() | inColorModel | Fil.HSxColorModel | Selected color model. | ||
![]() | inBeginHue | int | <0, 255> | 0 | Lowest acceptable Hue; if higher than inEndHue, then range wrapping is used. Default value: 0. |
![]() | inEndHue | int | <0, 255> | 255 | Highest acceptable Hue, if lower than inBeginHue, then range wrapping is used. Default value: 255. |
![]() | inMinSaturation | Ftl.Optional<int> | <0, 255> | 128 | Default value: 128. |
![]() | inMaxSaturation | Ftl.Optional<int> | <0, 255> | ||
![]() | inMinBrightness | Ftl.Optional<int> | <0, 255> | 128 | Minimum brightness; denotes V, L or I, depending on inColorModel. Default value: 128. |
![]() | inMaxBrightness | Ftl.Optional<int> | <0, 255> | Maximum brightness; denotes V, L or I, depending on inColorModel. Default value: ftl::NIL. | |
![]() | inFuzziness | float | <0.0f, INF> | Tolerance for value ranges that results in intermediate output values. | |
![]() | outMonoImage | Fil.Image | |||
![]() | diagHSxImage | Fil.Diagnostic<Fil.Image> | Image in HSx color space. |