Click or drag to resize

CudaInvokeCalcNorm Method

http://www.emgu.com
Returns the norm of a matrix.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void CalcNorm(
	IInputArray src,
	IOutputArray dst,
	NormType normType = NormType.L2,
	IInputArray mask = null,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source matrix. Any matrices except 64F are supported.
dst
Type: Emgu.CVIOutputArray
The GpuMat to store the result
normType (Optional)
Type: Emgu.CV.CvEnumNormType
Norm type. NORM_L1 , NORM_L2 , and NORM_INF are supported for now.
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