- Image recovery
- Image restoration
- Image deconvolution
- Image demosaicking
- Image pansharpening,
- Image inpainting,
- Image deblocking.
- Point-spread function (PSF)
- Optical transfer function
- De-convolution problem
- Input distribution
- Output distribution
- An inverse filter
- Noise spectrum
- Gaussian PSF
- Wiener–Helstrom filter
- Bayesian estimators
- Least-squares estimators
- Least-squares restoration
- Blind deconvolution
- Maximum-likelihood blind de-convolution
Statistic filters a.k.a rank filters or order filters
- Median filter: select the middle pixel value from the ordered set of values within the m x n neighbourhood (W) to replace the reference pixel.
- Min filter used to replace the reference pixel with the minimum value of the ordered set
- Max filter used to replace the reference pixel with the maximum value of the ordered set. The min filter is useful for reduction of salt noise, whereas the max filter can help remove pepper noise.
- Midpoint filter used to replace the reference pixel with the average of the highest and lowest pixel values within a window. It is used to reduce Gaussian and uniform noise in images.
- Alpha-trimmed mean filters use another combination of order statistics and averaging, in this case an average of the pixel values closest to the median, after the D lowest and D highest values in an ordered set have been excluded. They are used when images are corrupted by more than one type of noise.
Adaptive filters such as edge-preserving smoothing filters. They aim to apply a low-pass filter to an image in a selective way, minimising the edge blurring effect that would be present if a standard LPF had been applied to the image.
III. Noise reduction using the frequency domain techniques
The following filters can remove periodic noise.
III. Noise reduction using the frequency domain techniques
The following filters can remove periodic noise.
- Bandpass filter
- Bandreject filter
- Notch filter
- Image deblurring with the following Matlab commands:
- deconvreg: deblur image using regularized filter
- deconvlucy: deblur image using Lucy–Richardson method
- deconvblind: deblur image using blind deconvolution
- Inverse filtering
- Wiener Filtering (Matlab command deconvwnr)
The Wiener filter can be used to restore images in the presence of blurring only (i.e., without noise). In such cases, the best results are obtained for lower values of K.
IV. Image Recovery Examples
VI. Forms of the recovery problem
VII. MATLAB Commands
Median filters perform well with images corrupted by salt and pepper noise.
Harmonic mean filter is a variation of the mean filter and is good for salt and Gaussian noise. However, it fails to work on pepper noise.
Geometric mean filter can preserve image detail better than the arithmetic mean filter and work best on Gaussian noise.
- Defocusing
- Space image restoration
- Cross-channel degradation (e.g. original color image -> black and white image -> color image)
- Blind Spartically Varying Restoration
- Blocking artifact removal
- Video blocking artifact removal
- Error concealment
- Inpainting
- Image super-resolution
- Compressed video super-resolution
- Dual exposure restoration
- Pansharpening problem
- Demosaicking
- Tracking blurred objects
V. Sources of degradation
- motion
- atmospheric turbulence
- out-of-focus lens
- limitations of acquisition systems (optics, physics, cost, etc)
- finite resolution of sensors
- quantisation errors
- transmisison erros
- noise
VI. Forms of the recovery problem
- Noise smoothing
- Restoration/deconvolution (1D,2D,3D): multi-spectral, multi-channel
- Removal of compression artifacts
- Super-resolution: pansharpening, demosaicking
- Inpainting, concealment
- Dual exposure imaging
- Reconstruction from Projections
- Compressive sensing
- Light-field Reconstruction
- Spatially adaptive constrained least-squares restoration filter
VII. MATLAB Commands
- fftshift Shift zero-frequency component to centre of spectrum
- edgetaper Taper discontinuities/smooth along image edges
- deconvblind Deblur image using blind deconvolution
- fspecial Create predefined 2-D filter
- medfilt2: median filter
- ordfilt2: order filters use to apply min, max, median filters on corrupted images
- nlfilter or colfilt are sliding window neighbourhood operations. One of these two functions can be used. colfilt is considerably faster than nlfilter.
- This example gives the same result as using medfilt2 command with a 3-by-3 neighbourhood.
A = imread('cameraman.tif');
fun = @(x) median(x(:)); %in-line function declaration
B = nlfilter(A,[3 3],fun); %apply a sliding window neighbourhood operation
imshow(A), figure, imshow(B)
Median filters perform well with images corrupted by salt and pepper noise.
Harmonic mean filter is a variation of the mean filter and is good for salt and Gaussian noise. However, it fails to work on pepper noise.
Geometric mean filter can preserve image detail better than the arithmetic mean filter and work best on Gaussian noise.
VIII. References
- Oge Marques, Practical Image and Video Processing Using MATLAB, Wiley-IEEE Press, September 2011.
No comments:
Post a Comment