You are here: Start » AVL.NET » 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 | |
---|---|---|---|---|---|
![]() | inRegions | System.Collections.Generic.List<Avl.Region> | Input regions. | ||
![]() | inFeature | Avl.RegionFeature | Region feature value to be computed. | ||
![]() | inMinimum | Atl.Optional<float> | Lowest value of the range. Default value: atl::NIL. | ||
![]() | inMaximum | Atl.Optional<float> | Highest value of the range. Default value: atl::NIL. | ||
![]() | outAccepted | Atl.Optional<System.Collections.Generic.List<Avl.Region>> | Regions with feature values matching the range. | ||
![]() | outRejected | Atl.Optional<System.Collections.Generic.List<Avl.Region>> | Regions with feature values outside the range. | ||
![]() | outBelow | Atl.Optional<System.Collections.Generic.List<Avl.Region>> | Regions with feature values lower than inMinimum. | ||
![]() | outAbove | Atl.Optional<System.Collections.Generic.List<Avl.Region>> | Regions with feature values higher than inMaximum. | ||
![]() | outValues | Atl.Optional<System.Collections.Generic.List<float>> | Computed feature values. |