CudaInvokeNormalize Method |
http://www.emgu.com
Normalizes the norm or value range of an array.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Normalize(
IInputArray src,
IOutputArray dst,
double alpha,
double beta,
NormType normType,
DepthType depthType,
IInputArray mask = null,
Stream stream = null
)
Public Shared Sub Normalize (
src As IInputArray,
dst As IOutputArray,
alpha As Double,
beta As Double,
normType As NormType,
depthType As DepthType,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
static void Normalize(
IInputArray^ src,
IOutputArray^ dst,
double alpha,
double beta,
NormType normType,
DepthType depthType,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
static member Normalize :
src : IInputArray *
dst : IOutputArray *
alpha : float *
beta : float *
normType : NormType *
depthType : DepthType *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Input array. - dst
- Type: Emgu.CVIOutputArray
Output array of the same size as src . - alpha
- Type: SystemDouble
Norm value to normalize to or the lower range boundary in case of the range normalization. - beta
- Type: SystemDouble
Upper range boundary in case of the range normalization; it is not used for the norm normalization. - normType
- Type: Emgu.CV.CvEnumNormType
Normalization type ( NORM_MINMAX , NORM_L2 , NORM_L1 or NORM_INF ). - depthType
- Type: Emgu.CV.CvEnumDepthType
Optional depth of the output array. - mask (Optional)
- Type: Emgu.CVIInputArray
Optional operation mask. - 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