C# Класс ImageProcessor.Imaging.GaussianLayer

A Gaussian layer for applying sharpening and blurring methods to an image.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Equals ( object obj ) : bool

Returns a value that indicates whether the specified object is an GaussianLayer object that is equivalent to this GaussianLayer object.

GaussianLayer ( ) : System

Initializes a new instance of the GaussianLayer class.

GaussianLayer ( int size, double sigma = 1.4, int threshold ) : System

Initializes a new instance of the GaussianLayer class.

GetHashCode ( ) : int

Serves as a hash function for a particular type.

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

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

Returns a value that indicates whether the specified object is an GaussianLayer object that is equivalent to this GaussianLayer object.
public Equals ( object obj ) : bool
obj object /// The object to test. ///
Результат bool

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

Initializes a new instance of the GaussianLayer class.
public GaussianLayer ( ) : System
Результат System

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

Initializes a new instance of the GaussianLayer class.
public GaussianLayer ( int size, double sigma = 1.4, int threshold ) : System
size int /// The size to set the Gaussian kernel to. ///
sigma double /// The Sigma value (standard deviation) for Gaussian function used to calculate the kernel. ///
threshold int /// The threshold value, which is added to each weighted sum of pixels. ///
Результат System

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

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
Результат int