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