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

Invoke.ClassifyRegions

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

Namespace:Avl
Assembly:AvlNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inRegionsSystem.Collections.Generic.List<Avl.Region>Input regions.
inFeatureAvl.RegionFeatureRegion feature value to be computed.
inMinimumAtl.Optional<float>Lowest value of the range. Default value: atl::NIL.
inMaximumAtl.Optional<float>Highest value of the range. Default value: atl::NIL.
outAcceptedAtl.Optional<System.Collections.Generic.List<Avl.Region>>Regions with feature values matching the range.
outRejectedAtl.Optional<System.Collections.Generic.List<Avl.Region>>Regions with feature values outside the range.
outBelowAtl.Optional<System.Collections.Generic.List<Avl.Region>>Regions with feature values lower than inMinimum.
outAboveAtl.Optional<System.Collections.Generic.List<Avl.Region>>Regions with feature values higher than inMaximum.
outValuesAtl.Optional<System.Collections.Generic.List<float>>Computed feature values.

See also