Back to Aurora Vision Library website

You are here: Start » Function Reference » Histogram » Histogram Point Transforms » NegateHistogram

NegateHistogram


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Negates each bin value.

Syntax

C++
C#
 
void avl::NegateHistogram
(
	const avl::Histogram& inHistogram,
	avl::Histogram& outHistogram
)

Parameters

Name Type Default Description
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.