ImageTColor, TDepthIntegral Method (ImageTColor, Double, ImageTColor, Double) |
http://www.emgu.com
Calculates integral images for the source image
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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
)
member Integral :
sum : Image<'TColor, float> byref *
squareSum : Image<'TColor, float> byref -> unit
Parameters
- sum
- Type: Emgu.CVImageTColor, Double
The integral image - squareSum
- Type: Emgu.CVImageTColor, Double
The integral image for squared pixel values
Return Value
Type:
The integral image
See Also