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 product of the two GpuMat: c = scale * a * 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 Multiply( IntPtr a, IntPtr b, IntPtr c, double scale, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Multiply ( _ a As IntPtr, _ b As IntPtr, _ c As IntPtr, _ scale As Double, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Multiply( IntPtr a, IntPtr b, IntPtr c, double scale, IntPtr stream ) |
Parameters
- a
- Type: System..::..IntPtr
The first GpuMat to be element-wise multiplied.
- b
- Type: System..::..IntPtr
The second GpuMat to be element-wise multiplied.
- c
- Type: System..::..IntPtr
The element-wise multiplication of the two GpuMat
- scale
- Type: System..::..Double
The scale
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).