Back to Adaptive Vision Library website

You are here: Start » Function Reference » Profile Combinators » MaximumProfile_OfLoop

MaximumProfile_OfLoop


Header:AVL.h
Namespace:avl

Computes the maximum of profiles appearing in consecutive iterations.

Syntax

C++
C#
 
void avl::MaximumProfile_OfLoop
(
	MaximumProfile_OfLoopState& ioState,
	const avl::Profile& inProfile,
	avl::Profile& outProfile
)

Parameters

Name Type Default Description
ioState MaximumProfile_OfLoopState& Object used to maintain state of the function.
inProfile const Profile& Input profile
outProfile Profile& Output profile

In-place Processing

This function supports in-place data processing - you can pass the same reference to inProfile and outProfile

Read more about In-place Computation.

Description

Loop version of MaximumProfile.

Errors

List of possible exceptions:

Error type Description
DomainError Input profiles have different lengths in MaximumProfile.
DomainError Input profiles have different X coordinates in MaximumProfile.

See Also

  • MaximumProfile – Computes the maximum of two profiles point by point.