Click or drag to resize
CvInvokeAbsDiff Method
http://www.emgu.com
Calculates absolute difference between two arrays. dst(I)c = abs(src1(I)c - src2(I)c). All the arrays must have the same data type and the same size (or ROI size)

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void AbsDiff(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst
)

Parameters

src1
Type: Emgu.CVIInputArray
The first source array
src2
Type: Emgu.CVIInputArray
The second source array
dst
Type: Emgu.CVIOutputArray
The destination array
See Also