Click or drag to resize

CudaInvokeNorm Method (IInputArray, NormType, IInputArray)

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

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 double Norm(
	IInputArray src,
	NormType normType,
	IInputArray mask = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source matrix. Any matrices except 64F are supported.
normType
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.

Return Value

Type: Double
The norm of a matrix
See Also