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

Blur filter.

The filter performs convolution filter using the blur kernel:

1 2 3 2 1 2 4 5 4 2 3 5 6 5 3 2 4 5 4 2 1 2 3 2 1

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

By default this filter sets Convolution.ProcessAlpha property to , so the alpha channel of 32 bpp and 64 bpp images is blurred as well.

Sample usage:

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

Initial image:

Result image:

상속: Convolution
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Blur ( )

Initializes a new instance of the Blur class.

메소드 상세

Blur() 공개 메소드

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