Gaussian function.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public class Gaussian

Remarks

The class is used to calculate 1D and 2D Gaussian functions for specified Sigma (s) value:

Copy 
1-D: f(x) = exp( x * x / ( -2 * s * s ) ) / ( s * sqrt( 2 * PI ) )
2-D: f(x, y) = exp( x * x + y * y / ( -2 * s * s ) ) / ( s * s * 2 * PI )

Inheritance Hierarchy

System..::.Object
  AForge.Math..::.Gaussian

See Also