Inplace fills Array with normally distributed random numbers

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SetRandNormal(
	ulong seed,
	MCvScalar mean,
	MCvScalar std
)
Public Sub SetRandNormal ( _
	seed As ULong, _
	mean As MCvScalar, _
	std As MCvScalar _
)
public:
void SetRandNormal(
	unsigned long long seed, 
	MCvScalar mean, 
	MCvScalar std
)

Parameters

seed
UInt64
Seed for the random number generator
mean
MCvScalar
the mean value of random numbers
std
MCvScalar
the standard deviation of random numbers

See Also