http://www.emgu.com
Computes element-wise absolute difference of two GpuMats (c = abs(a - b)).
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Absdiff(
IInputArray a,
IInputArray b,
IOutputArray c,
Stream stream = null
)
Public Shared Sub Absdiff (
a As IInputArray,
b As IInputArray,
c As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void Absdiff(
IInputArray^ a,
IInputArray^ b,
IOutputArray^ c,
Stream^ stream = nullptr
)
static member Absdiff :
a : IInputArray *
b : IInputArray *
c : IOutputArray *
?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 element-wise absolute difference. - 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