CudaInvokeCalcNorm Method |
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)
Syntaxpublic static void CalcNorm(
IInputArray src,
IOutputArray dst,
NormType normType = NormType.L2,
IInputArray mask = null,
Stream stream = null
)
Public Shared Sub CalcNorm (
src As IInputArray,
dst As IOutputArray,
Optional normType As NormType = NormType.L2,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
static void CalcNorm(
IInputArray^ src,
IOutputArray^ dst,
NormType normType = NormType::L2,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
static member CalcNorm :
src : IInputArray *
dst : IOutputArray *
?normType : NormType *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _normType = defaultArg normType NormType.L2
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
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