http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Computes element-wise weighted reciprocal of an array (c = scale/ b).
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 Divide( double scalar, IntPtr b, IntPtr c, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Divide ( _ scalar As Double, _ b As IntPtr, _ c As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Divide( double scalar, IntPtr b, IntPtr c, IntPtr stream ) |
Parameters
- scalar
- Type: System..::..Double
The dirst scalar to be divided
- b
- Type: System..::..IntPtr
The second GpuMat to be element-wise divided.
- c
- Type: System..::..IntPtr
The result of the scalar dividing the GpuMat
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).