C# Класс OpenCvSharp.RNG

Random Number Generator. The class implements RNG using Multiply-with-Carry algorithm.
operations.hpp
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Fill ( OpenCvSharp.InputOutputArray mat, DistributionType distType, InputArray a, InputArray b, bool saturateRange = false ) : void

Gaussian ( double sigma ) : double

returns Gaussian random variate with mean zero.

Next ( ) : uint

updates the state and returns the next 32-bit unsigned integer random number

RNG ( ) : System

RNG ( ulong state ) : System

Run ( ) : uint

Run ( uint n ) : uint

returns a random integer sampled uniformly from [0, N).

Uniform ( double a, double b ) : double

returns uniformly distributed double-precision floating-point random number from [a,b) range

Uniform ( float a, float b ) : float

returns uniformly distributed floating-point random number from [a,b) range

Uniform ( int a, int b ) : int

returns uniformly distributed integer random number from [a,b) range

Описание методов

Fill() публичный Метод

public Fill ( OpenCvSharp.InputOutputArray mat, DistributionType distType, InputArray a, InputArray b, bool saturateRange = false ) : void
mat OpenCvSharp.InputOutputArray
distType DistributionType
a InputArray
b InputArray
saturateRange bool
Результат void

Gaussian() публичный Метод

returns Gaussian random variate with mean zero.
public Gaussian ( double sigma ) : double
sigma double
Результат double

Next() публичный Метод

updates the state and returns the next 32-bit unsigned integer random number
public Next ( ) : uint
Результат uint

RNG() публичный Метод

public RNG ( ) : System
Результат System

RNG() публичный Метод

public RNG ( ulong state ) : System
state ulong
Результат System

Run() публичный Метод

public Run ( ) : uint
Результат uint

Run() публичный Метод

returns a random integer sampled uniformly from [0, N).
public Run ( uint n ) : uint
n uint
Результат uint

Uniform() публичный Метод

returns uniformly distributed double-precision floating-point random number from [a,b) range
public Uniform ( double a, double b ) : double
a double
b double
Результат double

Uniform() публичный Метод

returns uniformly distributed floating-point random number from [a,b) range
public Uniform ( float a, float b ) : float
a float
b float
Результат float

Uniform() публичный Метод

returns uniformly distributed integer random number from [a,b) range
public Uniform ( int a, int b ) : int
a int
b int
Результат int