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

FIS.ThresholdToRegion_HSx Method

Creates a region containing image pixels which belongs to specified region in HSV, HSL or HSI space.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ThresholdToRegion_HSx
(
	FilNet.Image inRgbImage,
	NullableRef<FilNet.Region> inRoi,
	FilNet.HSxColorModel inColorModel,
	int inBeginHue,
	int inEndHue,
	int? inMinSaturation,
	int? inMaxSaturation,
	int? inMinBrightness,
	int? inMaxBrightness,
	FilNet.Region outRegion,
	FilNet.Image diagHSxImage
)

Parameters

Name Type Range Default Description
inRgbImageFilNet.Image
inRoiFilNet.NullableRef<FilNet.Region>Range of pixels to be processed. 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.
outRegionFilNet.RegionOutput region.
diagHSxImageFilNet.ImageDiagnostic image in HSx color space.

Function Overrides

See also