Click or drag to resize

CudaInvokeCalcAbsSum Method

http://www.emgu.com
Returns the sum of absolute values for matrix elements.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void CalcAbsSum(
	IInputArray src,
	IOutputArray dst,
	IInputArray mask = null,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source image of any depth except for CV_64F.
dst
Type: Emgu.CVIOutputArray
The GpuMat where the result will be stored.
mask (Optional)
Type: Emgu.CVIInputArray
optional operation mask; it must have the same size as src1 and CV_8UC1 type.
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