Inplace fills Array with uniformly distributed random numbers

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

Syntax

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

Parameters

seed
UInt64
Seed for the random number generator
floorValue
MCvScalar
the inclusive lower boundary of random numbers range
ceilingValue
MCvScalar
the exclusive upper boundary of random numbers range

See Also