http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Computes the integral image and integral for the squared image
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void IntegralBuffered( IntPtr src, IntPtr sum, IntPtr buffer, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub IntegralBuffered ( _ src As IntPtr, _ sum As IntPtr, _ buffer As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void IntegralBuffered( IntPtr src, IntPtr sum, IntPtr buffer, IntPtr stream ) |
Parameters
- src
- Type: System..::..IntPtr
The source GpuMat, supports only CV_8UC1 source type
- sum
- Type: System..::..IntPtr
The sum GpuMat, supports only CV_32S source type, but will contain unsigned int values
- buffer
- Type: System..::..IntPtr
The buffer GpuMat, supports only CV32F source type.
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).