You are here: Start » AVL.NET » AVS.ClassifyRegions Method

AVS.ClassifyRegions Method

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inRegionsSystem.Collections.Generic.IList<AvlNet.Region>Input regions.
inFeatureAvlNet.RegionFeatureRegion feature value to be computed.
inMinimumfloat?Lowest value of the range. Default value: atl::NIL.
inMaximumfloat?Highest value of the range. Default value: atl::NIL.
outAcceptedAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Region>>Regions with feature values matching the range. Can be null to skip this parameter calculation.
outRejectedAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Region>>Regions with feature values outside the range. Can be null to skip this parameter calculation.
outBelowAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Region>>Regions with feature values lower than inMinimum. Can be null to skip this parameter calculation.
outAboveAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Region>>Regions with feature values higher than inMaximum. Can be null to skip this parameter calculation.
outValuesAvlNet.NullableRef<System.Collections.Generic.List<float>>Computed feature values. Can be null to skip this parameter calculation.

See also