Search Results for

    Show / Hide Table of Contents

    Class GaussianTools

    Inheritance
    Object
    GaussianTools
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: TowseyLibrary
    Assembly: TowseyLibrary.dll
    Syntax
    public static class GaussianTools

    Methods

    | Improve this Doc View Source

    Gauss(Int32, Int32, Double)

    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
    Type Name Description
    Int32 x
    Int32 y
    Double sigma
    Returns
    Type Description
    Double
    | Improve this Doc View Source

    Gaussian_filter(Int32)

    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
    Type Description
    Double[,]
    • Improve this Doc
    • View Source
    In This Article
    Generated by DocFX AP docs version: 21.7.0.4-master-e26127a50d7bd7472d47288f10e61014fb981f7f-DIRTY-CI:144 Back to top