C# 클래스 Accord.Imaging.Filters.Variance

Variance filter.
The Variance filter replaces each pixel in an image by its neighborhood variance. The end result can be regarded as an border enhancement, making the Variance filter suitable to be used as an edge detection mechanism.
상속: BaseFilter
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Variance ( ) : System

Initializes a new instance of the Variance class.

Variance ( int radius ) : System

Initializes a new instance of the Variance class.

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

메소드 상세

ProcessFilter() 보호된 메소드

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
리턴 void

Variance() 공개 메소드

Initializes a new instance of the Variance class.
public Variance ( ) : System
리턴 System

Variance() 공개 메소드

Initializes a new instance of the Variance class.
public Variance ( int radius ) : System
radius int The radius neighborhood used to compute a pixel's local variance.
리턴 System