![]()
Noise Generation filtersAForge.NET framework provides set of filters to add some artificially generated Below is the list of implemented noise generation filters and the result of Source image Additive Noise // create random generator IRandomNumberGenerator generator = new UniformGenerator( new DoubleRange( -50, 50 ) ); // create filter AdditiveNoise filter = new AdditiveNoise( generator ); // apply the filter filter.ApplyInPlace( image );
Salt-and-Pepper Noise // create filter SaltAndPepperNoise filter = new SaltAndPepperNoise( 10 ); // apply the filter filter.ApplyInPlace( image );
|
|||||||