Click or drag to resize
CvInvokeConvertScaleAbs Method
http://www.emgu.com
Similar to cvCvtScale but it stores absolute values of the conversion results: dst(I)=abs(src(I)*scale + (shift,shift,...)) The function supports only destination arrays of 8u (8-bit unsigned integers) type, for other types the function can be emulated by combination of cvConvertScale and cvAbs functions.

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 ConvertScaleAbs(
	IInputArray src,
	IOutputArray dst,
	double scale,
	double shift
)

Parameters

src
Type: Emgu.CVIInputArray
Source array
dst
Type: Emgu.CVIOutputArray
Destination array (should have 8u depth).
scale
Type: SystemDouble
ScaleAbs factor
shift
Type: SystemDouble
Value added to the scaled source array elements
See Also