Class GaussianTools
Inheritance
GaussianTools
Assembly: TowseyLibrary.dll
public static class GaussianTools
Methods
|
Improve this Doc
View Source
returns a gaussian coefficient for point x,y distance from the centre of the distribution.
This formula derived from code of LeCun.
See python code at the bottom of the class LocalContrastNormalisation.
Declaration
public static double Gauss(int x, int y, double sigma)
Parameters
Returns
|
Improve this Doc
View Source
returns a 2-D Gaussian filter with side corresponding to 2 sigma.
This formula derived from code of LeCun.
See python code at the bottom of the class LocalContrastNormalisation.
Declaration
public static double[, ] Gaussian_filter(int side)
Parameters
Type |
Name |
Description |
Int32 |
side |
|
Returns