Calculates integral images for the source image

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

Syntax

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

Parameters

sum
Image<(Of <(TColor, Double>)>) %
The integral image
squareSum
Image<(Of <(TColor, Double>)>) %
The integral image for squared pixel values

Return Value

The integral image

See Also