Calculates one or more integral images for the source image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Integral(
	out Image<TColor, double> sum,
	out Image<TColor, double> squareSum,
	out Image<TColor, double> titledSum
)
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) _
)
public:
void Integral(
	[OutAttribute] Image<TColor, double>^% sum, 
	[OutAttribute] Image<TColor, double>^% squareSum, 
	[OutAttribute] Image<TColor, double>^% titledSum
)

Parameters

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

See Also