CudaInvokeIntegral Method |
http://www.emgu.com
Computes the integral image and integral for the squared image
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Integral(
IInputArray src,
IOutputArray sum,
Stream stream = null
)
Public Shared Sub Integral (
src As IInputArray,
sum As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void Integral(
IInputArray^ src,
IOutputArray^ sum,
Stream^ stream = nullptr
)
static member Integral :
src : IInputArray *
sum : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source GpuMat, supports only CV_8UC1 source type - sum
- Type: Emgu.CVIOutputArray
The sum GpuMat, supports only CV_32S source type, but will contain unsigned int values - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also