C# Class AForge.Imaging.Filters.AdditiveNoise

Additive noise filter.

The filter adds random value to each pixel of the source image. The distribution of random values can be specified by random generator.

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

Sample usage:

// create random generator IRandomNumberGenerator generator = new UniformGenerator( new Range( -50, 50 ) ); // create filter AdditiveNoise filter = new AdditiveNoise( generator ); // apply the filter filter.ApplyInPlace( image );

Initial image:

Result image:

Inheritance: BaseInPlacePartialFilter
Afficher le fichier Open project: holisticware-admin/MonoVersal.AForgeNET Class Usage Examples

Méthodes publiques

Méthode Description
AdditiveNoise ( ) : System

Initializes a new instance of the AdditiveNoise class.

AdditiveNoise ( IRandomNumberGenerator generator ) : System

Initializes a new instance of the AdditiveNoise class.

Méthodes protégées

Méthode Description
ProcessFilter ( UnmanagedImage image, Rectangle rect ) : void

Process the filter on the specified image.

Method Details

AdditiveNoise() public méthode

Initializes a new instance of the AdditiveNoise class.
public AdditiveNoise ( ) : System
Résultat System

AdditiveNoise() public méthode

Initializes a new instance of the AdditiveNoise class.
public AdditiveNoise ( IRandomNumberGenerator generator ) : System
generator IRandomNumberGenerator Random number genertor used to add noise.
Résultat System

ProcessFilter() protected méthode

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.
Résultat void