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

Simple edge detector.

The filter performs convolution filter using the edges kernel:

0 -1 0 -1 4 -1 0 -1 0

For the list of supported pixel formats, see the documentation to Convolution filter.

Sample usage:

// create filter Edges filter = new Edges( ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

상속: Convolution
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
Edges ( )

Initializes a new instance of the Edges class.

메소드 상세

Edges() 공개 메소드

Initializes a new instance of the Edges class.
public Edges ( )