You are here: Start » AVL.NET » Invoke.ClassifyPaths
Splits the paths of the input array - in accordance to the relation between computed feature values and the specified range.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void ClassifyPaths ( List<Avl.Path> inPaths, Avl.PathFilter inPathFilter, Avl.PathFeature inFeature, Optional<float> inMinimum, Optional<float> inMaximum, Optional<List<Avl.Path>> outAccepted, Optional<List<Avl.Path>> outRejected, Optional<List<Avl.Path>> outBelow, Optional<List<Avl.Path>> outAbove, Optional<List<float>> outValues )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inPaths | System.Collections.Generic.List<Avl.Path> | Input paths. | ||
![]()  | inPathFilter | Avl.PathFilter | Determines which paths will take part in computation. | ||
![]()  | inFeature | Avl.PathFeature | Path 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.Path>> | Paths with feature values matching the range. | ||
![]()  | outRejected | Atl.Optional<System.Collections.Generic.List<Avl.Path>> | Paths with feature values outside the range. | ||
![]()  | outBelow | Atl.Optional<System.Collections.Generic.List<Avl.Path>> | Paths with feature values lower than inMinimum. | ||
![]()  | outAbove | Atl.Optional<System.Collections.Generic.List<Avl.Path>> | Paths with feature values higher than inMaximum. | ||
![]()  | outValues | Atl.Optional<System.Collections.Generic.List<float>> | Computed feature values. | 


