RNGUniform Method (Int32, Int32) |
http://www.emgu.com
Returns uniformly distributed integer random number from [a,b) range
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic int Uniform(
int a,
int b
)
Public Function Uniform (
a As Integer,
b As Integer
) As Integer
public:
int Uniform(
int a,
int b
)
member Uniform :
a : int *
b : int -> int
Parameters
- a
- Type: SystemInt32
Lower inclusive boundary of the returned random number. - b
- Type: SystemInt32
Upper non-inclusive boundary of the returned random number.
Return Value
Type:
Int32Uniformly distributed integer random number from [a,b) range
See Also