Click or drag to resize

CvInvokeNormalize Method

http://www.emgu.com
normalizes the input array so that it's norm or value range takes the certain value(s).

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Normalize(
	IInputArray src,
	IOutputArray dst,
	double alpha = 1,
	double beta = 0,
	NormType normType = NormType.L2,
	DepthType dType = DepthType.Default,
	IInputArray mask = null
)

Parameters

src
Type: Emgu.CVIInputArray
The input array
dst
Type: Emgu.CVIOutputArray
The output array; in-place operation is supported
alpha (Optional)
Type: SystemDouble
The minimum/maximum value of the output array or the norm of output array
beta (Optional)
Type: SystemDouble
The maximum/minimum value of the output array
normType (Optional)
Type: Emgu.CV.CvEnumNormType
The normalization type
dType (Optional)
Type: Emgu.CV.CvEnumDepthType
Optional depth type for the dst array
mask (Optional)
Type: Emgu.CVIInputArray
The operation mask. Makes the function consider and normalize only certain array elements
See Also