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