You are here: Start » FIL.NET » FIS.ThresholdImage_HSx Method

FIS.ThresholdImage_HSx Method

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:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ThresholdImage_HSx
(
	FilNet.Image inRgbImage,
	NullableRef<FilNet.Region> inRoi,
	FilNet.HSxColorModel inColorModel,
	int inBeginHue,
	int inEndHue,
	int? inMinSaturation,
	int? inMaxSaturation,
	int? inMinBrightness,
	int? inMaxBrightness,
	float inFuzziness,
	FilNet.Image outMonoImage
)

Parameters

Name Type Range Default Description
inRgbImageFilNet.ImageInput image in the RGB color space.
inRoiFilNet.NullableRef<FilNet.Region>Region of interest. Default value: ftl::NIL.
inColorModelFilNet.HSxColorModelSelected color model.
inBeginHueint<0, 255>0Lowest acceptable Hue; if higher than inEndHue, then range wrapping is used. Default value: 0.
inEndHueint<0, 255>255Highest acceptable Hue, if lower than inBeginHue, then range wrapping is used. Default value: 255.
inMinSaturationint?<0, 255>128Default value: 128.
inMaxSaturationint?<0, 255>
inMinBrightnessint?<0, 255>128Minimum brightness; denotes V, L or I, depending on inColorModel. Default value: 128.
inMaxBrightnessint?<0, 255>Maximum brightness; denotes V, L or I, depending on inColorModel. Default value: ftl::NIL.
inFuzzinessfloat<0.0f, INF>Tolerance for value ranges that results in intermediate output values.
outMonoImageFilNet.Image

Function Overrides

See also