Inplace fills Array with uniformly distributed random numbers

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

Syntax

C#
public void SetRandUniform(
	ulong seed,
	MCvScalar floorValue,
	MCvScalar ceilingValue
)
Visual Basic (Declaration)
Public Sub SetRandUniform ( _
	seed As ULong, _
	floorValue As MCvScalar, _
	ceilingValue As MCvScalar _
)
Visual C++
public:
void SetRandUniform(
	unsigned long long seed, 
	MCvScalar floorValue, 
	MCvScalar ceilingValue
)

Parameters

seed
Type: System..::.UInt64
Seed for the random number generator
floorValue
Type: Emgu.CV.Structure..::.MCvScalar
the inclusive lower boundary of random numbers range
ceilingValue
Type: Emgu.CV.Structure..::.MCvScalar
the exclusive upper boundary of random numbers range

See Also