Example Wavelet Noise Removal

From BoofCV
Revision as of 19:53, 14 March 2019 by Peter (talk | contribs)
Jump to navigationJump to search

Image noise removal is the process of attempting to under the corruption caused by noise. Often this noise is modeled as Gaussian noise being added to each pixel independently. Several different wavelet algorithms have been proposed for removing noise from image. These work by determining the statistical properties of the wavelet coefficients and removing the outliers.

Except in highly constrained situations when strong assumptions can be made, it is never possible to recover the original image perfectly. Wavelet based methods do have some advantages over other commonly used techniques. For example, they tend to preserve edge features better than applying Gaussian blur. To see a comparison between some of these techniques, open the demonstration included with the project source code.

In the example below a simply interface is used to instantiate a wavelet based image denoiser. This filter is then used to remove the noise and create a smoother image that appears less noisy.

Example Code:

Concepts:

  • Noise Removal
  • Wavelets

Example Code

/**
 * Example of how to "remove" noise from images using wavelet based algorithms.  A simplified interface is used
 * which hides most of the complexity.  Wavelet image processing is still under development and only floating point
 * images are currently supported.  Which is why the image  type is hard coded.
 */
public class ExampleWaveletDenoise {

	public static void main( String args[] ) {

		// load the input image, declare data structures, create a noisy image
		Random rand = new Random(234);
		GrayF32 input = UtilImageIO.loadImage(UtilIO.pathExample("standard/kodim17.jpg"),GrayF32.class);

		GrayF32 noisy = input.clone();
		GImageMiscOps.addGaussian(noisy, rand, 20, 0, 255);
		GrayF32 denoised = noisy.createSameShape();

		// How many levels in wavelet transform
		int numLevels = 4;
		// Create the noise removal algorithm
		WaveletDenoiseFilter<GrayF32> denoiser =
				FactoryImageDenoise.waveletBayes(GrayF32.class,numLevels,0,255);

		// remove noise from the image
		denoiser.process(noisy,denoised);

		// display the results
		ListDisplayPanel gui = new ListDisplayPanel();
		gui.addImage(ConvertBufferedImage.convertTo(input,null),"Input");
		gui.addImage(ConvertBufferedImage.convertTo(noisy,null),"Noisy");
		gui.addImage(ConvertBufferedImage.convertTo(denoised,null),"Denoised");

		ShowImages.showWindow(gui,"Wavelet Noise Removal Example",true);
	}
}