Click or drag to resize

CvInvokeRandn Method (IInputOutputArray, MCvScalar, MCvScalar)

http://www.emgu.com
Fills the array with normally distributed random numbers.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void Randn(
	IInputOutputArray dst,
	MCvScalar mean,
	MCvScalar stddev
)

Parameters

dst
Type: Emgu.CVIInputOutputArray
Output array of random numbers; the array must be pre-allocated and have 1 to 4 channels.
mean
Type: Emgu.CV.StructureMCvScalar
Mean value (expectation) of the generated random numbers.
stddev
Type: Emgu.CV.StructureMCvScalar
Standard deviation of the generated random numbers; it can be either a vector (in which case a diagonal standard deviation matrix is assumed) or a square matrix.
See Also