C# 클래스 AForge.Imaging.Filters.SaltAndPepperNoise

Salt and pepper noise.

The filter adds random salt and pepper noise - sets maximum or minimum values to randomly selected pixels.

The filter accepts 8 bpp grayscale images and 24/32 bpp color images for processing.

Sample usage:

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

Initial image:

Result image:

상속: BaseInPlacePartialFilter
파일 보기 프로젝트 열기: holisticware-admin/MonoVersal.AForgeNET 1 사용 예제들

공개 메소드들

메소드 설명
SaltAndPepperNoise ( ) : System

Initializes a new instance of the SaltAndPepperNoise class.

SaltAndPepperNoise ( double noiseAmount ) : System

Initializes a new instance of the SaltAndPepperNoise class.

보호된 메소드들

메소드 설명
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

메소드 상세

ProcessFilter() 보호된 메소드

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void
image UnmanagedImage Source image data.
rect System.Drawing.Rectangle Image rectangle for processing by the filter.
리턴 void

SaltAndPepperNoise() 공개 메소드

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

SaltAndPepperNoise() 공개 메소드

Initializes a new instance of the SaltAndPepperNoise class.
public SaltAndPepperNoise ( double noiseAmount ) : System
noiseAmount double Amount of noise to generate in percents, [0, 100].
리턴 System