ImageTColor, TDepthIntegral Method (ImageTColor, Double, ImageTColor, Double, ImageTColor, Double) |
http://www.emgu.com
Calculates one or more integral images for the source image
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member Integral :
sum : Image<'TColor, float> byref *
squareSum : Image<'TColor, float> byref *
titledSum : 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 - titledSum
- Type: Emgu.CVImageTColor, Double
The integral for the image rotated by 45 degrees
See Also