Calculates one or more integral images for the source image

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public void Integral(
	out Image<TColor, double> sum,
	out Image<TColor, double> squareSum,
	out Image<TColor, double> titledSum
)
Visual Basic (Declaration)
Public Sub Integral ( _
	<OutAttribute> ByRef sum As Image(Of TColor, Double), _
	<OutAttribute> ByRef squareSum As Image(Of TColor, Double), _
	<OutAttribute> ByRef titledSum As Image(Of TColor, Double) _
)
Visual C++
public:
void Integral(
	[OutAttribute] Image<TColor, double>^% sum, 
	[OutAttribute] Image<TColor, double>^% squareSum, 
	[OutAttribute] Image<TColor, double>^% titledSum
)

Parameters

sum
Type: Emgu.CV..::.Image<(Of <(TColor, Double>)>) %
The integral image
squareSum
Type: Emgu.CV..::.Image<(Of <(TColor, Double>)>) %
The integral image for squared pixel values
titledSum
Type: Emgu.CV..::.Image<(Of <(TColor, Double>)>) %
The integral for the image rotated by 45 degrees

See Also