Image Filter
Image Filter
2.Types of Smoothing Linear Filters (Mean Filters) (Q. Describe Averaging Filter)
B. Sharpening filter: High Boost Filter: High boost filtering is an image sharpening
technique in digital image processing.
Application:It is used to enhance the edges and details of an image without affecting
the smooth areas.This technique is applied to an image after using the Laplacian filter
to the image because the Laplacian filter highlights the edges and details of the image.
The high-boost filter can be used to enhance high frequency component while still
keeping the low frequency components.
Laplace edge detector uses only one kernel. To detect the edges of an image, this
kernel detects 2nd order derivatives of image’s intensity levels by using only single
pass. We can use “kernel 2" to detect edges with diagonals. It will give better
approximation. Also, Laplace method gives faster calculations than others.
4.Order Statistics Filter: It is based on the ordering of the pixels contained in the
image area encompassed by the filter. It replaces the value of the centre pixel with the
value determined by the ranking result. Edges are better preserved in this filtering.
Types of Order statistics filter:
(i) Minimum filter: 0th percentile filter is the minimum filter. The value of the
center is replaced by the smallest value in the window.
(ii) Maximum filter: 100th percentile filter is the maximum filter. The value of
the center is replaced by the largest value in the window.
(iii) Median filter: Each pixel in the image is considered. First neighbouring
pixels are sorted and original values of the pixel is replaced by the median of the
list. The principal function of median filtering is to force pixels with very
distinct intensities to be more like their neighbours, thus eliminating intensity
spikes.
iv) Median Filter: Median filters are used for noise reduction with less blurring than
linear smoothing filters of same size. The principal function of median filtering is to
force pixels with very distinct intensities to be more like their neighbours, thus
eliminating intensity spikes. Note on Median filter
Application:1. Median filters are used for noise reduction with less blurring than linear
smoothing filters of same size.
2.Median filters are particularly effective in the presence of salt and pepper noise (
impulse noise) because of its appearance as black and white dots superimposed on
an image.
Median filters work by ranking pixels contained within the mask. Each pixel in the
image is considered. First neighbouring pixels are sorted and original values of the
pixel are replaced by the median of the list.The centre value is replaced with the
median value determined by the ranking result.