Back to Adaptive Vision Library website

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

MaximumHistogram


Computes the maximum of two histograms bar by bar.

Syntax

C++
C#
 
void avl::MaximumHistogram
(
	const avl::Histogram& inHistogram1,
	const avl::Histogram& inHistogram2,
	avl::Histogram& outHistogram
)

Parameters

Name Type Default Description
inHistogram1 const Histogram& Input histogram1
inHistogram2 const Histogram& Input histogram2
outHistogram Histogram& Output histogram

Description

The operation computes the maximum of two histograms. That is, each bin of the resulting histogram equals the maximum of corresponding bins of the input histograms.

In-place Processing

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

Errors

Error type Description
DomainError Input histograms formats are not the same in MaximumHistogram.