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

FIS.ClassifyRegions Method

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ClassifyRegions
(
	IList<FilNet.Region> inRegions,
	FilNet.RegionFeature inFeature,
	float? inMinimum,
	float? inMaximum,
	NullableRef<SafeList<FilNet.Region>> outAccepted,
	NullableRef<SafeList<FilNet.Region>> outRejected,
	NullableRef<SafeList<FilNet.Region>> outBelow,
	NullableRef<SafeList<FilNet.Region>> outAbove,
	NullableRef<List<float>> outValues
)

Parameters

Name Type Range Default Description
inRegionsSystem.Collections.Generic.IList<FilNet.Region>Input regions.
inFeatureFilNet.RegionFeatureRegion feature value to be computed.
inMinimumfloat?Lowest value of the range. Default value: ftl::NIL.
inMaximumfloat?Highest value of the range. Default value: ftl::NIL.
outAcceptedFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions with feature values matching the range. Can be null to skip this parameter calculation.
outRejectedFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions with feature values outside the range. Can be null to skip this parameter calculation.
outBelowFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions with feature values lower than inMinimum. Can be null to skip this parameter calculation.
outAboveFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions with feature values higher than inMaximum. Can be null to skip this parameter calculation.
outValuesFilNet.NullableRef<System.Collections.Generic.List<float>>Computed feature values. Can be null to skip this parameter calculation.

See also