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

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
inPathsSystem.Collections.Generic.List<Avl.Path>Input paths.
inPathFilterAvl.PathFilterDetermines which paths will take part in computation.
inFeatureAvl.PathFeaturePath 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.Path>>Paths with feature values matching the range.
outRejectedAtl.Optional<System.Collections.Generic.List<Avl.Path>>Paths with feature values outside the range.
outBelowAtl.Optional<System.Collections.Generic.List<Avl.Path>>Paths with feature values lower than inMinimum.
outAboveAtl.Optional<System.Collections.Generic.List<Avl.Path>>Paths with feature values higher than inMaximum.
outValuesAtl.Optional<System.Collections.Generic.List<float>>Computed feature values.

See also