Back to Aurora Vision Library website

You are here: Start » Function Reference » Histogram » Histogram Combinators » AddHistograms_OfLoop

AddHistograms_OfLoop


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Adds histograms appearing in consecutive iterations bar by bar.

Syntax

C++
C#
 
void avl::AddHistograms_OfLoop
(
	HistogramCombinators_OfLoopState& ioState,
	const avl::Histogram& inHistogram,
	avl::Histogram& outHistogram
)

Parameters

Name Type Default Description
Input will be modified ioState HistogramCombinators_OfLoopState& Object used to maintain state of the function.
Input value inHistogram const Histogram& Input histogram
Output value outHistogram Histogram& Output histogram

In-place Processing

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

Read more about In-place Computation.

Description

Loop version of AddHistograms.

See Also