Difference between revisions of "Example Wavelet Noise Removal"

From BoofCV
Jump to navigationJump to search
(Added wavelet denoising example)
 
(Updated for v0.6)
Line 38: Line 38:
// load the input image, declare data structures, create a noisy image
// load the input image, declare data structures, create a noisy image
Random rand = new Random(234);
Random rand = new Random(234);
ImageFloat32 input = UtilImageIO.loadImage("data/standard/lena512.bmp",ImageFloat32.class);
ImageFloat32 input = UtilImageIO.loadImage("../data/evaluation/standard/lena512.bmp",ImageFloat32.class);


ImageFloat32 noisy = input.clone();
ImageFloat32 noisy = input.clone();

Revision as of 18:20, 28 February 2012

Image Noise Removal with Wavelets

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, click on the applet below.

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

Relevant Applets:

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 i
 * mages 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);
		ImageFloat32 input = UtilImageIO.loadImage("../data/evaluation/standard/lena512.bmp",ImageFloat32.class);

		ImageFloat32 noisy = input.clone();
		GeneralizedImageOps.addGaussian(noisy,rand,20,0,255);
		ImageFloat32 denoised = new ImageFloat32(input.width,input.height);

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

		// 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");
	}
}