Back to Adaptive Vision Library website

You are here: Start » Function Reference » Conditional Processing » ClassifyByPredicate

ClassifyByPredicate


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Separates the elements of the input array into two output arrays. The first output array contains all elements for which the associated predicate is True.

Syntax

void avl::ClassifyByPredicate
(
	const atl::Array<Type>& inArray,
	const atl::Array<bool>& inPredicate,
	atl::Array<Type>& outAccepted,
	atl::Array<Type>& outRejected
)

Parameters

Name Type Default Description
inArray const Array<Type>& Elements to be classified
inPredicate const Array<bool>& Corresponding logical values determining the output array for each of the elements
outAccepted Array<Type>& Array of elements corresponding to 'true' values
outRejected Array<Type>& Array of elements corresponding to 'false' values

Hints

  • Before using this filter you need to have an array of objects (to be classified) and an array of boolean values that describe which elements of the first array willful some condition.
  • Connect the array of objects to the inArray input and connect the array of boolean values to the inPredicate input.

Examples

inArray = {"Alice", "Bill", "Frank", "Patricia", "Thomas"}
inPredicate = {True,True,False,False,True}
outAccepted = {"Alice", "Bill", "Thomas"}
outRejected = {"Frank", "Patricia""}

Errors

Error type Description
DomainError Inconsistent array lengths on input in ClassifyByPredicate.

See Also