You are here: Start » FIL.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: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
inPathsSystem.Collections.Generic.List<Fil.Path>Input paths.
inPathFilterFil.PathFilterDetermines which paths will take part in computation.
inFeatureFil.PathFeaturePath feature value to be computed.
inMinimumFtl.Optional<float>Lowest value of the range. Default value: ftl::NIL.
inMaximumFtl.Optional<float>Highest value of the range. Default value: ftl::NIL.
outAcceptedFtl.Optional<System.Collections.Generic.List<Fil.Path>>Paths with feature values matching the range.
outRejectedFtl.Optional<System.Collections.Generic.List<Fil.Path>>Paths with feature values outside the range.
outBelowFtl.Optional<System.Collections.Generic.List<Fil.Path>>Paths with feature values lower than inMinimum.
outAboveFtl.Optional<System.Collections.Generic.List<Fil.Path>>Paths with feature values higher than inMaximum.
outValuesFtl.Optional<System.Collections.Generic.List<float>>Computed feature values.

See also