http://www.emgu.com
Compares elements of two GpuMats (c = a <cmpop> b).
Supports CV_8UC4, CV_32FC1 types
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Compare(
IInputArray a,
IInputArray b,
IOutputArray c,
CmpType cmpop,
Stream stream = null
)
Public Shared Sub Compare (
a As IInputArray,
b As IInputArray,
c As IOutputArray,
cmpop As CmpType,
Optional stream As Stream = Nothing
)
public:
static void Compare(
IInputArray^ a,
IInputArray^ b,
IOutputArray^ c,
CmpType cmpop,
Stream^ stream = nullptr
)
static member Compare :
a : IInputArray *
b : IInputArray *
c : IOutputArray *
cmpop : CmpType *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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