C# 클래스 ImageProcessor.Imaging.GaussianLayer

A Gaussian layer for applying sharpening and blurring methods to an image.
파일 보기 프로젝트 열기: JimBobSquarePants/ImageProcessor 1 사용 예제들

공개 메소드들

메소드 설명
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