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 product 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 Multiply( IntPtr a, IntPtr b, IntPtr c, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Multiply ( _ a As IntPtr, _ b As IntPtr, _ c As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Multiply( IntPtr a, IntPtr b, IntPtr c, 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
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).