Computes element-wise absolute difference of two arrays (c = abs(a - b)). Supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types.

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

Syntax

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

Parameters

a
IntPtr
The first GpuMat
b
IntPtr
The second GpuMat
c
IntPtr
The result of the element-wise absolute difference.

See Also