You are here: Start » FIL.NET » Invoke.SegmentImage_Color

Invoke.SegmentImage_Color

Segments an image basing on distance to model colors.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SegmentImage_Color
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	List<Fil.Pixel> inReferenceColors,
	float inMaxDifference,
	Optional<List<float>> inDifferenceMultipliers,
	float inChromaAmount,
	bool inForceDisjointRegions,
	List<Fil.Region> outRegions
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inReferenceColorsSystem.Collections.Generic.List<Fil.Pixel>Colors to compare pixels to.
inMaxDifferencefloat<0.0f, INF>5.0fMaximal difference between pixel and reference color to be accepted. Default value: 5.0f.
inDifferenceMultipliersFtl.Optional<System.Collections.Generic.List<float>>Scales for maximum differences for each color. Default value: ftl::NIL.
inChromaAmountfloat<0.0f, 1.0f>0.7fProportion of chromatic information in distance computation. Default value: 0.7f.
inForceDisjointRegionsboolForce output regions to be disjoint.
outRegionsSystem.Collections.Generic.List<Fil.Region>Regions of pixels closest to colors.

See also