http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Computes element-wise quotient of the two GpuMat (c = a / b).
Supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types.
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void Divide( IntPtr a, IntPtr b, IntPtr c, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Divide ( _ a As IntPtr, _ b As IntPtr, _ c As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Divide( IntPtr a, IntPtr b, IntPtr c, IntPtr stream ) |
Parameters
- a
- Type: System..::..IntPtr
The first GpuMat
- b
- Type: System..::..IntPtr
The second GpuMat
- c
- Type: System..::..IntPtr
The element-wise quotient of the two GpuMat
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).