Jitter filter.

Namespace:  AForge.Imaging.Filters
Assembly:  AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public class Jitter : BaseUsingCopyPartialFilter

Remarks

The filter moves each pixel of a source image in random direction within a window of specified radius.

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

Sample usage:

CopyC#
// create filter
Jitter filter = new Jitter( 4 );
// apply the filter
filter.ApplyInPlace( image );

Initial image:

Result image:

Inheritance Hierarchy

See Also