Back to FabImage Library website

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

MultiplyHistogram


Header:FIL.h
Namespace:fil

Multiplies each bin value by a number.

Syntax

C++
C#
 
void fil::MultiplyHistogram
(
	const fil::Histogram& inHistogram,
	const float inValue,
	fil::Histogram& outHistogram
)

Parameters

Name Type Default Description
inHistogram const Histogram& Input histogram
inValue const float 2.0f Input 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.