http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Computes norm of the difference between two GpuMats
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static double Norm( IntPtr src1, IntPtr src2, NORM_TYPE normType ) |
Visual Basic |
---|
Public Shared Function Norm ( _ src1 As IntPtr, _ src2 As IntPtr, _ normType As NORM_TYPE _ ) As Double |
Visual C++ |
---|
public: static double Norm( IntPtr src1, IntPtr src2, NORM_TYPE normType ) |
Parameters
- src1
- Type: System..::..IntPtr
The GpuMat. Supports only CV_8UC1 type
- src2
- Type: System..::..IntPtr
If IntPtr.Zero, norm operation is apply to src1 only. Otherwise, this is the GpuMat of type CV_8UC1
- normType
- Type: Emgu.CV.CvEnum..::..NORM_TYPE
The norm type. Supports NORM_INF, NORM_L1, NORM_L2.