Click or drag to resize

RNGGaussian Method

Returns the next random number sampled from the Gaussian distribution. The method transforms the state using the MWC algorithm and returns the next random number from the Gaussian distribution N(0,sigma) . That is, the mean value of the returned random numbers is zero and the standard deviation is the specified sigma.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public double Gaussian(
	double sigma
)

Parameters

sigma
Type: SystemDouble
standard deviation of the distribution.

Return Value

Type: Double

[Missing <returns> documentation for "M:OpenCvSharp.RNG.Gaussian(System.Double)"]

See Also