Click or drag to resize

CudaInvokeNormalize Method

http://www.emgu.com
Normalizes the norm or value range of an array.

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 Normalize(
	IInputArray src,
	IOutputArray dst,
	double alpha,
	double beta,
	NormType normType,
	DepthType depthType,
	IInputArray mask = null,
	Stream stream = null
)

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