http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Compares elements of two GpuMats (c = a <cmpop> b).
Supports CV_8UC4, 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 Compare( IntPtr a, IntPtr b, IntPtr c, CMP_TYPE cmpop, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Compare ( _ a As IntPtr, _ b As IntPtr, _ c As IntPtr, _ cmpop As CMP_TYPE, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Compare( IntPtr a, IntPtr b, IntPtr c, CMP_TYPE cmpop, IntPtr stream ) |
Parameters
- a
- Type: System..::..IntPtr
The first GpuMat
- b
- Type: System..::..IntPtr
The second GpuMat
- c
- Type: System..::..IntPtr
The result of the comparison.
- cmpop
- Type: Emgu.CV.CvEnum..::..CMP_TYPE
The type of comparison
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).