Click or drag to resize

CudaInvokeAbsdiff Method

http://www.emgu.com
Computes element-wise absolute difference of two GpuMats (c = abs(a - b)).

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void Absdiff(
	IInputArray a,
	IInputArray b,
	IOutputArray c,
	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 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