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

Invoke.ClassifyRegions

Splits an array of regions according to the selected feature and range.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ClassifyRegions
(
	List<Fil.Region> inRegions,
	Fil.RegionFeature inFeature,
	Optional<float> inMinimum,
	Optional<float> inMaximum,
	Optional<List<Fil.Region>> outAccepted,
	Optional<List<Fil.Region>> outRejected,
	Optional<List<Fil.Region>> outBelow,
	Optional<List<Fil.Region>> outAbove,
	Optional<List<float>> outValues
)

Parameters

Name Type Range Default Description
inRegionsSystem.Collections.Generic.List<Fil.Region>Input regions.
inFeatureFil.RegionFeatureRegion feature value to be computed.
inMinimumFtl.Optional<float>Lowest value of the range. Default value: ftl::NIL.
inMaximumFtl.Optional<float>Highest value of the range. Default value: ftl::NIL.
outAcceptedFtl.Optional<System.Collections.Generic.List<Fil.Region>>Regions with feature values matching the range.
outRejectedFtl.Optional<System.Collections.Generic.List<Fil.Region>>Regions with feature values outside the range.
outBelowFtl.Optional<System.Collections.Generic.List<Fil.Region>>Regions with feature values lower than inMinimum.
outAboveFtl.Optional<System.Collections.Generic.List<Fil.Region>>Regions with feature values higher than inMaximum.
outValuesFtl.Optional<System.Collections.Generic.List<float>>Computed feature values.

See also