Click or drag to resize

CudaInvokeCompare Method

http://www.emgu.com
Compares elements of two GpuMats (c = a <cmpop> b). Supports CV_8UC4, CV_32FC1 types

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void Compare(
	IInputArray a,
	IInputArray b,
	IOutputArray c,
	CmpType cmpop,
	Stream stream = null
)

Parameters

a
Type: Emgu.CVIInputArray
The first GpuMat
b
Type: Emgu.CVIInputArray
The second GpuMat
c
Type: Emgu.CVIOutputArray
The result of the comparison.
cmpop
Type: Emgu.CV.CvEnumCmpType
The type of comparison
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also