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

Dithering using Sierra error diffusion.

The filter represents binarization filter, which is based on error diffusion dithering with Sierra coefficients. Error is diffused on 10 neighbor pixels with next coefficients:

| * | 5 | 3 | | 2 | 4 | 5 | 4 | 2 | | 2 | 3 | 2 | / 32

The filter accepts 8 bpp grayscale images for processing.

Sample usage:

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

Initial image:

Result image:

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

공개 메소드들

메소드 설명
SierraDithering ( ) : System

Initializes a new instance of the SierraDithering class.

메소드 상세

SierraDithering() 공개 메소드

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