| MatRandu Method (Scalar, Scalar) | 
        
         
            fills array with uniformly-distributed random numbers from the range [low, high)
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void Randu(
	Scalar low,
	Scalar high
)
Public Sub Randu ( 
	low As Scalar,
	high As Scalar
)
public:
void Randu(
	Scalar low, 
	Scalar high
)
member Randu : 
        low : Scalar * 
        high : Scalar -> unit 
function Randu(low, high);
Parameters
- low
- Type: OpenCvSharpScalar
 The inclusive lower boundary of the generated random numbers
- high
- Type: OpenCvSharpScalar
 The exclusive upper boundary of the generated random numbers
 See Also
See Also