Click or drag to resize

CudaInvokeCalcNormDiff Method

http://www.emgu.com
Returns the difference of two matrices.

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 CalcNormDiff(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	NormType normType = NormType.L2,
	Stream stream = null
)

Parameters

src1
Type: Emgu.CVIInputArray
Source matrix. Any matrices except 64F are supported.
src2
Type: Emgu.CVIInputArray
Second source matrix (if any) with the same size and type as src1.
dst
Type: Emgu.CVIOutputArray
The GpuMat where the result will be stored in
normType (Optional)
Type: Emgu.CV.CvEnumNormType
Norm type. NORM_L1 , NORM_L2 , and NORM_INF are supported for now.
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