Click or drag to resize
CudaInvokeNorm Method (IInputArray, IInputArray, NormType)
http://www.emgu.com
Computes norm of the difference between two GpuMats

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static double Norm(
	IInputArray src1,
	IInputArray src2,
	NormType normType = NormType.L2
)

Parameters

src1
Type: Emgu.CVIInputArray
The GpuMat. Supports only CV_8UC1 type
src2
Type: Emgu.CVIInputArray
If IntPtr.Zero, norm operation is apply to src1 only. Otherwise, this is the GpuMat of type CV_8UC1
normType (Optional)
Type: Emgu.CV.CvEnumNormType
The norm type. Supports NORM_INF, NORM_L1, NORM_L2.

Return Value

Type: Double
The norm of the src1 if src2 is IntPtr.Zero. Otherwise the norm of the difference between two GpuMats.
See Also