User:OrenBochman/Cleaning Up
- For more about image cleanup in general, see Commons:Images for cleanup.
Interference or other regular patterns overlaid on an image can be introduced by a variety of sources, including:
- Electromagnetic interference in the environment of the device collecting the image;
- Noise in a transmitted image such as a television still due to analog transmission interference or degradation of media;
- The texture of the paper that the image was printed on, particularly if it was printed in a cheap magazine or newspaper.
Attempting to remove these by ordinary image space techniques such as replicating the pattern and subtracting it would be extremely difficult and unlikely to be completely successful. Sometimes interference can be hidden by downscaling or blurring, but this is rarely a satisfactory solution. Sometimes convolutions can be used, but this is an advanced technique.
A simple and effective technique for dealing with these problems is to identify the interfering features in the power spectrum image produced by Fourier analysis, eliminate them, and convert back to image space. This tutorial shows how to do this using some widely available tools.
Tutorial for Gimp
editFirst we have to install all the necessary software. All you need is available for free on Internet.
- Install Gimp, if you don't have it. Then, respective of your operating system:
Linux
editYou have to download and install:
- The gimptool utility: it should be within Gimp. Several Linux distributions put it in a different package. On Debian and Ubuntu it is called libgimp2.0-dev
- the fftw library: you can get it from www.fftw.org. It is available on Ubuntu and Debian repositories as fftw3 and fftw3-dev
- the Fourier Gimp plug-in, you can get it from http://people.via.ecp.fr/~remi/soft/gimp/gimp_plugin_en.php3#fourier. There is no package for Debian/Ubuntu, you have to install it from the source.
Windows
edit- To install the Fourier Gimp plug-in download the "Binaries for Windows" from http://people.via.ecp.fr/~remi/soft/gimp/gimp_plugin_en.php3#fourier and extract its contents into the Gimp plug-ins directory (.gimp-2.x\plug-ins in your user directory or C:\Program Files\GIMP-2.x\lib\gimp\2.0\plug-ins).
- Restart Gimp, if it is running.
First open the image; it will be in RGB format. We want to be able to manipulate the RGB layers separately (unless the image is grayscale or monochrome, then the decomposition of channels to layers can be skipped and the manipulations done directly to the image). In order to do so, right-click on the image and choose Image→Mode→Decompose (see screenshot on right). For the latest version of GIMP, right-click and select Colors→Components→Decompose. Gimp will create another gray-scale image having the RGB as different layers | |
Choose RGB and press OK (see screenshot on right). This way you will get the decomposed picture. | |
Select the window with the new picture, go to the layers window (if you can't see it go to File→Dialogs→Layers and it will appear) and hide all but one layer clicking on the eye to remove it. Then select the remaining layer. On the screenshot on the right I have isolated the blue layer. Now you can work on one layer without influencing the others. It is also recommended to apply "Remove transparency" from the layer's right-click menu to each layer, as transparency is not needed and only distracts when editing.
|
|
After you have finished editing you have to convert it back to the standard domain performing the inverse FFT. Right-click on the picture and choose Filters→Generic→FFT Inverse as shown in the picture on the right. Do the same for all the three layers. | |
After you have edited all the layers (remember to perform the inverse FFT on all of them!) you have to get your RGB picture back. Right-click on the picture and choose Image→Mode→Compose (see screenshot on right). Here is your picture! |
See also
edit- GIMP: Remove Coherent Noise (Wikibook)