Compares elements of two arrays (c = a <cmpop> b). Supports CV_8UC4, CV_32FC1 types

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void Compare(
	IntPtr a,
	IntPtr b,
	IntPtr c,
	CMP_TYPE cmpop
)
Public Shared Sub Compare ( _
	a As IntPtr, _
	b As IntPtr, _
	c As IntPtr, _
	cmpop As CMP_TYPE _
)
public:
static void Compare(
	IntPtr a, 
	IntPtr b, 
	IntPtr c, 
	CMP_TYPE cmpop
)

Parameters

a
IntPtr
The first GpuMat
b
IntPtr
The second GpuMat
c
IntPtr
The result of the comparison.
cmpop
CMP_TYPE
The type of comparison

See Also