[This is preliminary documentation and is subject to change.]

Inplace fills Array with uniformly distributed random numbers

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SetRandUniform(
	MCvScalar floorValue,
	MCvScalar ceilingValue
)
Public Sub SetRandUniform ( _
	floorValue As MCvScalar, _
	ceilingValue As MCvScalar _
)
public:
void SetRandUniform(
	MCvScalar floorValue, 
	MCvScalar ceilingValue
)

Parameters

floorValue
MCvScalar
the inclusive lower boundary of random numbers range
ceilingValue
MCvScalar
the exclusive upper boundary of random numbers range

See Also