Click or drag to resize

RNGUniform Method (Int32, Int32)

http://www.emgu.com
Returns uniformly distributed integer random number from [a,b) range

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public int Uniform(
	int a,
	int b
)

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: Int32
Uniformly distributed integer random number from [a,b) range
See Also