SlideShare a Scribd company logo
Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05
www.ijera.com 1 | P a g e
Analysis of Non Linear Filters with Various Density of Impulse
Noise for Different Window Size
Rashmi Sharma
Department of computer science and engineering, College name- Gwalior institute of technology and science
(m.p.) india
Abstract
Corrupted digital images are recovered by using median filters. The most frequently occur noise is salt and
pepper type impulse noise. As the noise increases it becomes hard to recover the noisy digital image. Different
median filters have been suggested to recover it. Size of the window taken in the filter is also the important
factor at different level of noises. The performance of standard median filter (SMF), centered weighted median
(CWM) filter and directional weighted median (DWM) filter is tested on gray scale images corrupted with
variable percentage of salt & pepper noise impulse noise. It is also tested for different window sizes of filters.
Some filter performs better at low noise while some performs better at high noise. At higher level of noise, large
window size in the filters works better than small window size. These comparisons are very helpful in deciding
the best filter at different level of noise.
Keywords: SMF, CWM, DWM.
I. INTRODUCTION
The images corrupted by impulse noise are often
occurred in practice. This type of noise may appear in
digital images because of channel decoder damages,
dying down of signal in communication links,
communication subscriber’s moving, video sensor’s
noises and other. The amplitude of the corruption is
relatively very high compared to the strength of
original signal. So, when the signal is quantized into
L intensity levels, the corrupted pixels are generally
digitized into either of the two extreme values (i.e. 0
or L-1). The impulse noise generally appears as white
and black spots in the image [1].
Since signals are nonlinear in nature, it is evident
that nonlinear filters are generally superior to linear
filters in terms of impulse noise removal [4]. It’s
important to eliminate noise before subsequent image
processing tasks such as edge detection or
segmentation is carried out [5].
II. THEORY
[1] STANDARD MEDIAN FILTER
Median filter is very important non linear filter;
implementation of this filter is very easy. Large
window size median filter destroy the fine image
details due to its rank ordering process. This filter
behaves like low pass filter which blocks all high
frequency component of the images like noise and
edges, thus blurs the image. In median filter, each
pixel is replaced by the median of its surrounding
pixels as shown by the equation below,
𝑦 𝑖, 𝑗 = 𝑚𝑒𝑑𝑖𝑎𝑛{𝑥 𝑖 − 𝑠, 𝑗 − 𝑡 , (𝑠, 𝑡) ≠ (0,0)}
(1)
For the filtering of high density corrupted image
need large window size so that the sufficient number
of noise free pixels will present in the window. So the
size of the sliding window in the median filter is
varying according to the noise density. A center pixel
either it is corrupted by impulse noise or not is
replaced by the median value. Due to this reason this
filter blurs the image. The window size 3×3, 5×5,
7×7, and 9×9 median filter are mainly applicable.
[2] CENTER WEIGHTED MEDIAN FILTER
Center weighted median is a special case of
weighted median filters. This filter gives more weight
only to the center pixel in the window and easy to
implementable. CWM filter preserves more edges,
details is compared with simple median filter at the
expense of less noise suppression.
Suppose {X} is the noisy image and (2N+1) ×
(2N+1) is the sliding window size, centered at (𝑖, 𝑗).
The adjustment of the center pixel according to
weight is given by following equation.
𝑦 𝑖, 𝑗 = 𝑚𝑒𝑑𝑖𝑎𝑛{𝑥 𝑖 − 𝑠, 𝑗 − 𝑡 , 𝑤𝑐 ◊ 𝑥 𝑖, 𝑗 /
(𝑠, 𝑡) ∈ 𝑊, (𝑠, 𝑡) ≠ (0,0)} (2)
Where 𝑤𝑐the weight of the center pixel, W is is
the window size and 𝑦 𝑖, 𝑗 is the output pixel. If
𝑤𝑐 =1, then CWM filter become the simple median
filter.
[3] DIRECTIONAL WEIGHTED MEDIAN
FILTER
Directional weighted median filter gives the
better result as compared with other median based
filters, especially when image corrupted by high
RESEARCH ARTICLE OPEN ACCESS
Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05
www.ijera.com 2 | P a g e
density random impulse noise.The basic assumption
in this method is that the noise free image consists of
locally smoothly varing areas separated by edges.
Let 𝑆𝑘 represent a
set of pixels aligned with the k-th direction which is
centered at (0,0) is given
S1 = {(-2,-2) ,(-1,-1) ,(0,0) ,(1,1) ,(2,2)}
S2 = {(0,-2) ,(0,-1) ,(0,0) ,(0,1) ,(0,2)}
S3 = {(2,-2) ,(1,-1) ,(0,0) ,(-1,1) ,(-2,2)}
S4 = {(-2,0) ,(-1,0) ,(0,0) ,(1,0) ,(2,0)}
Four directions in the 5×5 sliding window is,
Figure 1: Four directions for impulse noise detection
Now calculate the direction index 𝑑𝑖,𝑗
(𝑘)
using the
following formula.
𝑑𝑖,𝑗
(𝑘)
= 𝑤𝑠,𝑡𝑠,𝑡 ∈ 𝑆 𝑘
0 𝑦𝑖+𝑠,𝑗 +𝑡 − 𝑦𝑖,𝑗 , 1 ≤ 𝑘 ≤ 4
(3)
𝑤𝑠,𝑡 =
2, 𝑠, 𝑡 ∈ 𝛺3
1, 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒
, 𝛺3
= { 𝑠, 𝑡 : − 1 ≤
𝑠, 𝑡 ≤ 1} (4)
Each direction index is sensitive to the edge
aligned with a given direction. Minimum value of
these four direction indexes is basically used for
impulse detection. Minimum value of the direction
index is given by following equation.
𝑟𝑖,𝑗 = min⁡{ 𝑑𝑖,𝑗
𝑘
∶ 1 ≤ 𝑘 ≤ 4} (5)
Now there are three case possible
1) When the current pixel is a noise-free flat-region
pixel then 𝑟𝑖,𝑗 is small, because of the four small
direction indexes.
2) When the current pixel is an edge pixel then 𝑟𝑖,𝑗 is
also small, because at least one of the direction
indexes is small.
3) When the current pixel is an impulse then 𝑟𝑖,𝑗 is
large, because of the four large direction indexes.
Now impulse detection in this method is given
by following formula:
𝑥(𝑖, 𝑗) 𝑖𝑠 𝑎
𝑛𝑜𝑖𝑠𝑦 𝑝𝑖𝑥𝑒𝑙, 𝑖𝑓 𝑟𝑖,𝑗 > 𝑇
𝑛𝑜𝑖𝑠𝑒 − 𝑓𝑟𝑒𝑒 𝑝𝑖𝑥𝑒𝑙, 𝑖𝑓 𝑟𝑖,𝑗 ≤ 𝑇
(6)
If the mimimum value of direction index is
greater than the threshold T, then the center pixel is
noisy otherwise pixel is not noisy.After the impulse
noise detection, most of the median based filters
replace the noisy pixels by the median value in the
sliding window.
Now calculate the standard deviation 𝜎𝑖,𝑗
𝑘
of the
gray scale value in each direction and find out the
mimimum standard deviation direction by using
following formula.
𝑙𝑖,𝑗 = {𝜎𝑖,𝑗
𝑘
∶ 𝑘 = 1 𝑡𝑜 4}𝑘
𝑎𝑟𝑔𝑚𝑖𝑛
(7)
Where the operator arg min is used to find the
minimizer of the function.Standard deviation gives
the knowledge about how tightly all pixel value are
clustered around the mean in the set of pixels and 𝑙𝑖,𝑗
shows that the four pixels aligned with this direction
are the closest to each other. So the center pixel
should also be close to them in order to keep the
edges unchanged. Median calculate by using the
following formula.
𝑚(𝑖, 𝑗) = 𝑚𝑒𝑑𝑖𝑎𝑛 { 𝑤𝑠,𝑡 ⋄ 𝑥(𝑖 + 𝑠, 𝑗 + 𝑡) ∶ 𝑠, 𝑡 ∈
𝛺3
} (8)
Where 𝑤𝑠,𝑡 =
𝑤 𝑚 , 𝑠, 𝑡 ∈ 𝑠𝑙 𝑖,𝑗
0
1, 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒
, (9)
operator ⋄ denotes repetition operation and normally
𝑤 𝑚 = 2.
The output of the DWM filter is given by following
formula.
𝑦(𝑖, 𝑗) = 𝛼(𝑖, 𝑗)𝑥(𝑖, 𝑗) + 1 − 𝛼(𝑖, 𝑗) 𝑚(𝑖, 𝑗) (10)
Where 𝛼(𝑖, 𝑗) =
0, 𝑟𝑖,𝑗 > 𝑇
1, 𝑟𝑖,𝑗 ≤ 𝑇
(11)
III. EXPERIMENTAL PROCEDURE
Data set used for testing the performance of
SMF, CWM, DWM filter is a standard test gray scale
image of cameraman
in MATLAB. These filters are implemented in
MATLAB [10]. The steps of experimental procedure
are as follows
1) Read standard test image.
2) Add salt and pepper noise of varying
density.
3) Apply filter on corrupted image.
4) Calculate PSNR from original and restored
image for the filter.
5) Repeat steps 1 to 4 for other two filters.
Noise density is varied from 1 to 60 percent.
Then apply above steps by changing the widow size
in the filters. Window size of 3x3 and 5x5 is used in
implementing filters.
Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05
www.ijera.com 3 | P a g e
IV. EXPERIMENTAL REULTS
PSNR CALCULATION: If 𝑜(𝑖, 𝑗) is the original
image, 𝑥(𝑖, 𝑗) is the corrupted image then PSNR of
the corrupted image is given by following formula,
𝑃𝑆𝑁𝑅 = 10 log10
(255)2
1
𝑀𝑁
(𝑜 𝑖,𝑗 −𝑥(𝑖,𝑗))2𝑁
𝑗=1
𝑀
𝑖=1
(12)
PSNR is calculated for different density of noise and
the result is shown in table below,
Table 1
PSNR values of image by 3 x 3 window of
different window filter techniques in the variation
of noise (salt & paper) density 1 to 60
Percentage
of Noise
density
Window Filter Technique
SMF CWM DWM
1 26.79 25.77 33.02
5 26.43 25.56 29.60
10 25.47 25.10 26.77
15 24.56 24.71 23.31
20 23.72 23.95 21.18
25 23.22 23.71 19.28
30 20.64 22.82 17.32
35 18.97 22.00 16.09
40 17.28 20.89 14.70
45 15.73 19.47 13.53
50 14.30 17.40 12.25
55 12.64 16.07 11.18
60 11.56 14.30 10.40
Table 2
PSNR values of image by 5 x 5 window of
different window filter techniques in the variation
of noise (salt & paper) density 1 to 60
Percentage
of Noise
density
Window Filter Technique
SMF CWM DWM
1 23.43 24.38 25.54
5 23.32 24.20 24.81
10 22.96 24.12 24.06
15 22.65 23.67 23.26
20 22.12 23.37 22.45
25 21.77 23.22 22.01
30 21.25 22.58 21.41
35 20.66 22.06 20.82
40 20.04 21.63 20.15
45 19.61 20.78 19.50
50 18.50 19.89 18.24
55 17.36 18.70 17.13
60 16.06 17.21 15.47
For the comparison point of view, the PSNR
values of different window size with the help of three
different window filter techniques in the variation of
noise density from 1 to 60 is plotted and it is shown
in the figure 2.
Also, the original image on which all the values of
PSNR is calculated is shown in the figure 3. The
noisy images and their respective filtered images are
also shown in the figure 4 with the different density
of noise.
Figure 2: PSNR of different window size with
different window filter technique in the variation
of noise (salt & paper) density 1 to 60.
Figure 3: Original Image of Cameraman
V. CONCLUSION
In the above comparison graph, It is been seen
that up to 12 percent noise DWM filter with 3x3
window is having best performance while in between
12 to 33 percent noise CWM filter with 3x3 window
has best performance. but for the high density noise
CWM filter with 5x5 window provides maximum
filtering. It is been concluded that At higher level of
noise, large window size in the filters works better
0 10 20 30 40 50 60
10
15
20
25
30
35
COMPARISION OF MEDIAN FILTERS
percentage of noise
PSNR
3x3 SMF
3x3 CWM
3x3 DWM
5x5 SMF
5x5 CWM
5x5 DWM
Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05
www.ijera.com 4 | P a g e
than small window size while at lower level of noise
small window size performs better.
5%
(salt &
paper)
noise
DWM
filter
With 3x3
Window
size
25%
(salt &
paper)
noise
CWM
filter
With 3x3
Window
size
60%
(salt &
paper)
noise
CWM
filter
With
5x5
Window
size
Noisy Image Filtered Image
Noisy Image Filtered Image
Noisy Image Filtered Image
Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com
ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05
www.ijera.com 5 | P a g e
REFERENCES
[1] Kavita Tewari, Manorama V. Tiwari,
“Efficient Removal of Impulse Noise in
Digital Images” , nternational Journal of
Scientific and Research Publications,
Volume 2, Issue 10, October 2012.
[2] K J Sreeja1, Prudhvi Raj Budumuru2 “A
New Switching Median Filter for Impulse
Noise Removal from Corrupted Images” ,
Int. Journal of Engineering Research and
Applications, ISSN : 2248-9622, Vol. 3,
Issue 6, Nov-Dec 2013, pp.496-501.
[3] Geoffrine Judith.M.C1 and
N.Kumarasabapathy2, “Study and analysis
of impulse noise reduction filters” , Signal
& Image Processing : An International
Journal(SIPIJ) Vol.2, No.1, March 2011.
[4] Mr. Khemchandra N. Attarde1, Prof.
A.M.Patil2 and Mr. Parmatma P. Pandey3,
“Simple Adaptive Switching Median Filter
for the Removal of Impulse Noise from
corrupted images" , International Journal
of Research in Engineering & Advanced
Technology, Volume 1, Issue 3, June-July,
2013.
[5] Hani M. Ibrahem “An Efficient and Simple
Switching Filter for Removal of High
Density Salt-and-Pepper Noise”, I.J.
Image, Graphics and Signal Processing,
2013, 12, 1-8.
[6] Chung-Chia Kang, Wen-June Wang,
“Modified switching median filter with one
more noise detector for impulse removal,”
Int. J. Electron. Commun. (AEU) 63
(2009) 998-1004.
[7] Zhou Wang and David Zhang,
“Progressive Switching Median Filter for
the Removal of Impulse Noise from Highly
Corrupted Images,” IEEE transactions on
circuits and systems—ii: analog and
digital signal processing, vol. 46, no. 1,
January 1999.
[8] Chung-Chia Kang, Wen-June Wang,
“Modified switching median filter with one
more noise detector for impulse removal,”
Int. J. Electron. Commun. (AEU) 63
(2009) 998-1004.
[9] Ko S J, Lee Y H (1991) Center weighted
median filters and their applications to
image enhancement. IEEE Trans. Circuits
Syst. 38(9): 984-993

More Related Content

What's hot

Computer Vision - Image Filters
Computer Vision - Image FiltersComputer Vision - Image Filters
Computer Vision - Image Filters
Yoss Cohen
 
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSINGHIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
Bimal2354
 
Image denoising
Image denoising Image denoising
Image denoising
umarjamil10000
 
Noise reduction by fuzzy image filtering(synopsis)
Noise reduction by fuzzy image filtering(synopsis)Noise reduction by fuzzy image filtering(synopsis)
Noise reduction by fuzzy image filtering(synopsis)
Mumbai Academisc
 
Sharpening using frequency Domain Filter
Sharpening using frequency Domain FilterSharpening using frequency Domain Filter
Sharpening using frequency Domain Filter
arulraj121
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
Sanyam Agarwal
 
Image denoising
Image denoisingImage denoising
Image denoising
Haitham Ahmed
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
Wael Sharba
 
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
Md. Shohel Rana
 
mean_filter
mean_filtermean_filter
mean_filter
Satyajit Nag Mithu
 
Image filtering : A comparitive study
Image filtering : A comparitive studyImage filtering : A comparitive study
Image filtering : A comparitive study
pruthabhalde3
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
DeepikaT13
 
Spatial domain and filtering
Spatial domain and filteringSpatial domain and filtering
Spatial domain and filtering
University of Potsdam
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
shabanam tamboli
 
Module 2
Module 2Module 2
Module 2
UllasSS1
 
SPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSINGSPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSING
muthu181188
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
Wael Sharba
 
2.spatial filtering
2.spatial filtering2.spatial filtering
2.spatial filtering
mukesh bhardwaj
 
Module 31
Module 31Module 31
Module 31
UllasSS1
 
Image denoising algorithms
Image denoising algorithmsImage denoising algorithms
Image denoising algorithms
Mohammad Sunny
 

What's hot (20)

Computer Vision - Image Filters
Computer Vision - Image FiltersComputer Vision - Image Filters
Computer Vision - Image Filters
 
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSINGHIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
HIGH PASS FILTER IN DIGITAL IMAGE PROCESSING
 
Image denoising
Image denoising Image denoising
Image denoising
 
Noise reduction by fuzzy image filtering(synopsis)
Noise reduction by fuzzy image filtering(synopsis)Noise reduction by fuzzy image filtering(synopsis)
Noise reduction by fuzzy image filtering(synopsis)
 
Sharpening using frequency Domain Filter
Sharpening using frequency Domain FilterSharpening using frequency Domain Filter
Sharpening using frequency Domain Filter
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Image denoising
Image denoisingImage denoising
Image denoising
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
Speckle Noise Reduction in Ultrasound Images using Adaptive and Anisotropic D...
 
mean_filter
mean_filtermean_filter
mean_filter
 
Image filtering : A comparitive study
Image filtering : A comparitive studyImage filtering : A comparitive study
Image filtering : A comparitive study
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Spatial domain and filtering
Spatial domain and filteringSpatial domain and filtering
Spatial domain and filtering
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Module 2
Module 2Module 2
Module 2
 
SPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSINGSPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSING
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
2.spatial filtering
2.spatial filtering2.spatial filtering
2.spatial filtering
 
Module 31
Module 31Module 31
Module 31
 
Image denoising algorithms
Image denoising algorithmsImage denoising algorithms
Image denoising algorithms
 

Viewers also liked

Aplicatiile favorite ale
Aplicatiile favorite aleAplicatiile favorite ale
Aplicatiile favorite aleTeodor123
 
الوحدة التاسعة
الوحدة التاسعةالوحدة التاسعة
الوحدة التاسعةSaif Eddin
 
Zatrul sie rtecia, w szpitalu walczy o zycie. "Tak ciezkiego przypadku jesz...
Zatrul sie rtecia, w szpitalu walczy o zycie. 
"Tak ciezkiego przypadku jesz...Zatrul sie rtecia, w szpitalu walczy o zycie. 
"Tak ciezkiego przypadku jesz...
Zatrul sie rtecia, w szpitalu walczy o zycie. "Tak ciezkiego przypadku jesz...
foregoingyester61
 
safeway 2006 Annual Report
safeway 2006 Annual Reportsafeway 2006 Annual Report
safeway 2006 Annual Report
finance6
 
Evaluation of digital youth participation v.3
Evaluation of digital youth participation v.3Evaluation of digital youth participation v.3
Evaluation of digital youth participation v.3
Danube University Krems, Centre for E-Governance
 
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter userMarie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
Danube University Krems, Centre for E-Governance
 
Vízia Centrálnej osi v Petržalke
Vízia Centrálnej osi v PetržalkeVízia Centrálnej osi v Petržalke
Vízia Centrálnej osi v Petržalke
Marcel Slávik
 
Kauppakamari kouluttaa keväällä 2015
Kauppakamari kouluttaa keväällä 2015Kauppakamari kouluttaa keväällä 2015
Kauppakamari kouluttaa keväällä 2015
K2HEL
 
Stepwell
StepwellStepwell
Stepwell
Alyona Smetana
 
Qinfeng Zhu: Internet penetration and public service delivery
Qinfeng Zhu: Internet penetration and public service delivery Qinfeng Zhu: Internet penetration and public service delivery
Qinfeng Zhu: Internet penetration and public service delivery
Danube University Krems, Centre for E-Governance
 
Antarctica Be Developed
Antarctica Be DevelopedAntarctica Be Developed
Antarctica Be Developed
Vinayak Hegde
 
Prezentacija za pancevo 10, 2015
Prezentacija za pancevo 10, 2015Prezentacija za pancevo 10, 2015
Prezentacija za pancevo 10, 2015
instituttam
 
0402高雄市長陳菊百日民調
0402高雄市長陳菊百日民調0402高雄市長陳菊百日民調
0402高雄市長陳菊百日民調
setnews
 
1453 Άλωση της Κωνσταντινούπολης
1453 Άλωση  της Κωνσταντινούπολης1453 Άλωση  της Κωνσταντινούπολης
1453 Άλωση της Κωνσταντινούπολης
Stavroula Lianou
 
Prezentacija za pancevo 7, 2015
Prezentacija za pancevo 7, 2015Prezentacija za pancevo 7, 2015
Prezentacija za pancevo 7, 2015
instituttam
 
Wilco van Iperen (KRO-NCRV) @ CMC Nieuws
Wilco van Iperen (KRO-NCRV) @ CMC NieuwsWilco van Iperen (KRO-NCRV) @ CMC Nieuws
Wilco van Iperen (KRO-NCRV) @ CMC Nieuws
Media Perspectives
 

Viewers also liked (16)

Aplicatiile favorite ale
Aplicatiile favorite aleAplicatiile favorite ale
Aplicatiile favorite ale
 
الوحدة التاسعة
الوحدة التاسعةالوحدة التاسعة
الوحدة التاسعة
 
Zatrul sie rtecia, w szpitalu walczy o zycie. "Tak ciezkiego przypadku jesz...
Zatrul sie rtecia, w szpitalu walczy o zycie. 
"Tak ciezkiego przypadku jesz...Zatrul sie rtecia, w szpitalu walczy o zycie. 
"Tak ciezkiego przypadku jesz...
Zatrul sie rtecia, w szpitalu walczy o zycie. "Tak ciezkiego przypadku jesz...
 
safeway 2006 Annual Report
safeway 2006 Annual Reportsafeway 2006 Annual Report
safeway 2006 Annual Report
 
Evaluation of digital youth participation v.3
Evaluation of digital youth participation v.3Evaluation of digital youth participation v.3
Evaluation of digital youth participation v.3
 
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter userMarie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
Marie Neihouser, Julien Boyadjian: Why and how to create a panel of twitter user
 
Vízia Centrálnej osi v Petržalke
Vízia Centrálnej osi v PetržalkeVízia Centrálnej osi v Petržalke
Vízia Centrálnej osi v Petržalke
 
Kauppakamari kouluttaa keväällä 2015
Kauppakamari kouluttaa keväällä 2015Kauppakamari kouluttaa keväällä 2015
Kauppakamari kouluttaa keväällä 2015
 
Stepwell
StepwellStepwell
Stepwell
 
Qinfeng Zhu: Internet penetration and public service delivery
Qinfeng Zhu: Internet penetration and public service delivery Qinfeng Zhu: Internet penetration and public service delivery
Qinfeng Zhu: Internet penetration and public service delivery
 
Antarctica Be Developed
Antarctica Be DevelopedAntarctica Be Developed
Antarctica Be Developed
 
Prezentacija za pancevo 10, 2015
Prezentacija za pancevo 10, 2015Prezentacija za pancevo 10, 2015
Prezentacija za pancevo 10, 2015
 
0402高雄市長陳菊百日民調
0402高雄市長陳菊百日民調0402高雄市長陳菊百日民調
0402高雄市長陳菊百日民調
 
1453 Άλωση της Κωνσταντινούπολης
1453 Άλωση  της Κωνσταντινούπολης1453 Άλωση  της Κωνσταντινούπολης
1453 Άλωση της Κωνσταντινούπολης
 
Prezentacija za pancevo 7, 2015
Prezentacija za pancevo 7, 2015Prezentacija za pancevo 7, 2015
Prezentacija za pancevo 7, 2015
 
Wilco van Iperen (KRO-NCRV) @ CMC Nieuws
Wilco van Iperen (KRO-NCRV) @ CMC NieuwsWilco van Iperen (KRO-NCRV) @ CMC Nieuws
Wilco van Iperen (KRO-NCRV) @ CMC Nieuws
 

Similar to Analysis of Non Linear Filters with Various Density of Impulse Noise for Different Window Size

M017218088
M017218088M017218088
M017218088
IOSR Journals
 
Image Noise Removal by Dual Threshold Median Filter for RVIN
Image Noise Removal by Dual Threshold Median Filter for RVINImage Noise Removal by Dual Threshold Median Filter for RVIN
Image Noise Removal by Dual Threshold Median Filter for RVIN
IOSR Journals
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
ijistjournal
 
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
ijistjournal
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
theijes
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
eSAT Publishing House
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
eSAT Publishing House
 
Aw044306308
Aw044306308Aw044306308
Aw044306308
IJERA Editor
 
Iaetsd literature review on efficient detection and filtering of high
Iaetsd literature review on efficient detection and filtering of highIaetsd literature review on efficient detection and filtering of high
Iaetsd literature review on efficient detection and filtering of high
Iaetsd Iaetsd
 
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
sipij
 
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAINIMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
ijma
 
Novel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital imagesNovel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital images
ijbbjournal
 
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
IOSR Journals
 
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
IOSR Journals
 
Image denoising using new adaptive based median filter
Image denoising using new adaptive based median filterImage denoising using new adaptive based median filter
Image denoising using new adaptive based median filter
sipij
 
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
IJMER
 
K010615562
K010615562K010615562
K010615562
IOSR Journals
 
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
iosrjce
 
[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh
IJET - International Journal of Engineering and Techniques
 

Similar to Analysis of Non Linear Filters with Various Density of Impulse Noise for Different Window Size (20)

M017218088
M017218088M017218088
M017218088
 
Image Noise Removal by Dual Threshold Median Filter for RVIN
Image Noise Removal by Dual Threshold Median Filter for RVINImage Noise Removal by Dual Threshold Median Filter for RVIN
Image Noise Removal by Dual Threshold Median Filter for RVIN
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
 
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
PERFORMANCE ANALYSIS OF UNSYMMETRICAL TRIMMED MEDIAN AS DETECTOR ON IMAGE NOI...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
 
Aw044306308
Aw044306308Aw044306308
Aw044306308
 
Iaetsd literature review on efficient detection and filtering of high
Iaetsd literature review on efficient detection and filtering of highIaetsd literature review on efficient detection and filtering of high
Iaetsd literature review on efficient detection and filtering of high
 
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
Image Filtering Using all Neighbor Directional Weighted Pixels: Optimization ...
 
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAINIMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
 
Novel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital imagesNovel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital images
 
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
 
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
Restoration of Images Corrupted by High Density Salt & Pepper Noise through A...
 
Image denoising using new adaptive based median filter
Image denoising using new adaptive based median filterImage denoising using new adaptive based median filter
Image denoising using new adaptive based median filter
 
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...Nonlinear Transformation Based Detection And Directional  Mean Filter to Remo...
Nonlinear Transformation Based Detection And Directional Mean Filter to Remo...
 
K010615562
K010615562K010615562
K010615562
 
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
 
[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh
 

Recently uploaded

Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
UReason
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
ydzowc
 
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
RamonNovais6
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
Gino153088
 
Null Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAMNull Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAM
Divyanshu
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
 
artificial intelligence and data science contents.pptx
artificial intelligence and data science contents.pptxartificial intelligence and data science contents.pptx
artificial intelligence and data science contents.pptx
GauravCar
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
BRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdfBRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdf
LAXMAREDDY22
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
SakkaravarthiShanmug
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
171ticu
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
 
Transformers design and coooling methods
Transformers design and coooling methodsTransformers design and coooling methods
Transformers design and coooling methods
Roger Rozario
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
Nada Hikmah
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 

Recently uploaded (20)

Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
 
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURSCompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
CompEx~Manual~1210 (2).pdf COMPEX GAS AND VAPOURS
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
 
Null Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAMNull Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAM
 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
 
artificial intelligence and data science contents.pptx
artificial intelligence and data science contents.pptxartificial intelligence and data science contents.pptx
artificial intelligence and data science contents.pptx
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
BRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdfBRAIN TUMOR DETECTION for seminar ppt.pdf
BRAIN TUMOR DETECTION for seminar ppt.pdf
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
 
Transformers design and coooling methods
Transformers design and coooling methodsTransformers design and coooling methods
Transformers design and coooling methods
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 

Analysis of Non Linear Filters with Various Density of Impulse Noise for Different Window Size

  • 1. Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05 www.ijera.com 1 | P a g e Analysis of Non Linear Filters with Various Density of Impulse Noise for Different Window Size Rashmi Sharma Department of computer science and engineering, College name- Gwalior institute of technology and science (m.p.) india Abstract Corrupted digital images are recovered by using median filters. The most frequently occur noise is salt and pepper type impulse noise. As the noise increases it becomes hard to recover the noisy digital image. Different median filters have been suggested to recover it. Size of the window taken in the filter is also the important factor at different level of noises. The performance of standard median filter (SMF), centered weighted median (CWM) filter and directional weighted median (DWM) filter is tested on gray scale images corrupted with variable percentage of salt & pepper noise impulse noise. It is also tested for different window sizes of filters. Some filter performs better at low noise while some performs better at high noise. At higher level of noise, large window size in the filters works better than small window size. These comparisons are very helpful in deciding the best filter at different level of noise. Keywords: SMF, CWM, DWM. I. INTRODUCTION The images corrupted by impulse noise are often occurred in practice. This type of noise may appear in digital images because of channel decoder damages, dying down of signal in communication links, communication subscriber’s moving, video sensor’s noises and other. The amplitude of the corruption is relatively very high compared to the strength of original signal. So, when the signal is quantized into L intensity levels, the corrupted pixels are generally digitized into either of the two extreme values (i.e. 0 or L-1). The impulse noise generally appears as white and black spots in the image [1]. Since signals are nonlinear in nature, it is evident that nonlinear filters are generally superior to linear filters in terms of impulse noise removal [4]. It’s important to eliminate noise before subsequent image processing tasks such as edge detection or segmentation is carried out [5]. II. THEORY [1] STANDARD MEDIAN FILTER Median filter is very important non linear filter; implementation of this filter is very easy. Large window size median filter destroy the fine image details due to its rank ordering process. This filter behaves like low pass filter which blocks all high frequency component of the images like noise and edges, thus blurs the image. In median filter, each pixel is replaced by the median of its surrounding pixels as shown by the equation below, 𝑦 𝑖, 𝑗 = 𝑚𝑒𝑑𝑖𝑎𝑛{𝑥 𝑖 − 𝑠, 𝑗 − 𝑡 , (𝑠, 𝑡) ≠ (0,0)} (1) For the filtering of high density corrupted image need large window size so that the sufficient number of noise free pixels will present in the window. So the size of the sliding window in the median filter is varying according to the noise density. A center pixel either it is corrupted by impulse noise or not is replaced by the median value. Due to this reason this filter blurs the image. The window size 3×3, 5×5, 7×7, and 9×9 median filter are mainly applicable. [2] CENTER WEIGHTED MEDIAN FILTER Center weighted median is a special case of weighted median filters. This filter gives more weight only to the center pixel in the window and easy to implementable. CWM filter preserves more edges, details is compared with simple median filter at the expense of less noise suppression. Suppose {X} is the noisy image and (2N+1) × (2N+1) is the sliding window size, centered at (𝑖, 𝑗). The adjustment of the center pixel according to weight is given by following equation. 𝑦 𝑖, 𝑗 = 𝑚𝑒𝑑𝑖𝑎𝑛{𝑥 𝑖 − 𝑠, 𝑗 − 𝑡 , 𝑤𝑐 ◊ 𝑥 𝑖, 𝑗 / (𝑠, 𝑡) ∈ 𝑊, (𝑠, 𝑡) ≠ (0,0)} (2) Where 𝑤𝑐the weight of the center pixel, W is is the window size and 𝑦 𝑖, 𝑗 is the output pixel. If 𝑤𝑐 =1, then CWM filter become the simple median filter. [3] DIRECTIONAL WEIGHTED MEDIAN FILTER Directional weighted median filter gives the better result as compared with other median based filters, especially when image corrupted by high RESEARCH ARTICLE OPEN ACCESS
  • 2. Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05 www.ijera.com 2 | P a g e density random impulse noise.The basic assumption in this method is that the noise free image consists of locally smoothly varing areas separated by edges. Let 𝑆𝑘 represent a set of pixels aligned with the k-th direction which is centered at (0,0) is given S1 = {(-2,-2) ,(-1,-1) ,(0,0) ,(1,1) ,(2,2)} S2 = {(0,-2) ,(0,-1) ,(0,0) ,(0,1) ,(0,2)} S3 = {(2,-2) ,(1,-1) ,(0,0) ,(-1,1) ,(-2,2)} S4 = {(-2,0) ,(-1,0) ,(0,0) ,(1,0) ,(2,0)} Four directions in the 5×5 sliding window is, Figure 1: Four directions for impulse noise detection Now calculate the direction index 𝑑𝑖,𝑗 (𝑘) using the following formula. 𝑑𝑖,𝑗 (𝑘) = 𝑤𝑠,𝑡𝑠,𝑡 ∈ 𝑆 𝑘 0 𝑦𝑖+𝑠,𝑗 +𝑡 − 𝑦𝑖,𝑗 , 1 ≤ 𝑘 ≤ 4 (3) 𝑤𝑠,𝑡 = 2, 𝑠, 𝑡 ∈ 𝛺3 1, 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒 , 𝛺3 = { 𝑠, 𝑡 : − 1 ≤ 𝑠, 𝑡 ≤ 1} (4) Each direction index is sensitive to the edge aligned with a given direction. Minimum value of these four direction indexes is basically used for impulse detection. Minimum value of the direction index is given by following equation. 𝑟𝑖,𝑗 = min⁡{ 𝑑𝑖,𝑗 𝑘 ∶ 1 ≤ 𝑘 ≤ 4} (5) Now there are three case possible 1) When the current pixel is a noise-free flat-region pixel then 𝑟𝑖,𝑗 is small, because of the four small direction indexes. 2) When the current pixel is an edge pixel then 𝑟𝑖,𝑗 is also small, because at least one of the direction indexes is small. 3) When the current pixel is an impulse then 𝑟𝑖,𝑗 is large, because of the four large direction indexes. Now impulse detection in this method is given by following formula: 𝑥(𝑖, 𝑗) 𝑖𝑠 𝑎 𝑛𝑜𝑖𝑠𝑦 𝑝𝑖𝑥𝑒𝑙, 𝑖𝑓 𝑟𝑖,𝑗 > 𝑇 𝑛𝑜𝑖𝑠𝑒 − 𝑓𝑟𝑒𝑒 𝑝𝑖𝑥𝑒𝑙, 𝑖𝑓 𝑟𝑖,𝑗 ≤ 𝑇 (6) If the mimimum value of direction index is greater than the threshold T, then the center pixel is noisy otherwise pixel is not noisy.After the impulse noise detection, most of the median based filters replace the noisy pixels by the median value in the sliding window. Now calculate the standard deviation 𝜎𝑖,𝑗 𝑘 of the gray scale value in each direction and find out the mimimum standard deviation direction by using following formula. 𝑙𝑖,𝑗 = {𝜎𝑖,𝑗 𝑘 ∶ 𝑘 = 1 𝑡𝑜 4}𝑘 𝑎𝑟𝑔𝑚𝑖𝑛 (7) Where the operator arg min is used to find the minimizer of the function.Standard deviation gives the knowledge about how tightly all pixel value are clustered around the mean in the set of pixels and 𝑙𝑖,𝑗 shows that the four pixels aligned with this direction are the closest to each other. So the center pixel should also be close to them in order to keep the edges unchanged. Median calculate by using the following formula. 𝑚(𝑖, 𝑗) = 𝑚𝑒𝑑𝑖𝑎𝑛 { 𝑤𝑠,𝑡 ⋄ 𝑥(𝑖 + 𝑠, 𝑗 + 𝑡) ∶ 𝑠, 𝑡 ∈ 𝛺3 } (8) Where 𝑤𝑠,𝑡 = 𝑤 𝑚 , 𝑠, 𝑡 ∈ 𝑠𝑙 𝑖,𝑗 0 1, 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒 , (9) operator ⋄ denotes repetition operation and normally 𝑤 𝑚 = 2. The output of the DWM filter is given by following formula. 𝑦(𝑖, 𝑗) = 𝛼(𝑖, 𝑗)𝑥(𝑖, 𝑗) + 1 − 𝛼(𝑖, 𝑗) 𝑚(𝑖, 𝑗) (10) Where 𝛼(𝑖, 𝑗) = 0, 𝑟𝑖,𝑗 > 𝑇 1, 𝑟𝑖,𝑗 ≤ 𝑇 (11) III. EXPERIMENTAL PROCEDURE Data set used for testing the performance of SMF, CWM, DWM filter is a standard test gray scale image of cameraman in MATLAB. These filters are implemented in MATLAB [10]. The steps of experimental procedure are as follows 1) Read standard test image. 2) Add salt and pepper noise of varying density. 3) Apply filter on corrupted image. 4) Calculate PSNR from original and restored image for the filter. 5) Repeat steps 1 to 4 for other two filters. Noise density is varied from 1 to 60 percent. Then apply above steps by changing the widow size in the filters. Window size of 3x3 and 5x5 is used in implementing filters.
  • 3. Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05 www.ijera.com 3 | P a g e IV. EXPERIMENTAL REULTS PSNR CALCULATION: If 𝑜(𝑖, 𝑗) is the original image, 𝑥(𝑖, 𝑗) is the corrupted image then PSNR of the corrupted image is given by following formula, 𝑃𝑆𝑁𝑅 = 10 log10 (255)2 1 𝑀𝑁 (𝑜 𝑖,𝑗 −𝑥(𝑖,𝑗))2𝑁 𝑗=1 𝑀 𝑖=1 (12) PSNR is calculated for different density of noise and the result is shown in table below, Table 1 PSNR values of image by 3 x 3 window of different window filter techniques in the variation of noise (salt & paper) density 1 to 60 Percentage of Noise density Window Filter Technique SMF CWM DWM 1 26.79 25.77 33.02 5 26.43 25.56 29.60 10 25.47 25.10 26.77 15 24.56 24.71 23.31 20 23.72 23.95 21.18 25 23.22 23.71 19.28 30 20.64 22.82 17.32 35 18.97 22.00 16.09 40 17.28 20.89 14.70 45 15.73 19.47 13.53 50 14.30 17.40 12.25 55 12.64 16.07 11.18 60 11.56 14.30 10.40 Table 2 PSNR values of image by 5 x 5 window of different window filter techniques in the variation of noise (salt & paper) density 1 to 60 Percentage of Noise density Window Filter Technique SMF CWM DWM 1 23.43 24.38 25.54 5 23.32 24.20 24.81 10 22.96 24.12 24.06 15 22.65 23.67 23.26 20 22.12 23.37 22.45 25 21.77 23.22 22.01 30 21.25 22.58 21.41 35 20.66 22.06 20.82 40 20.04 21.63 20.15 45 19.61 20.78 19.50 50 18.50 19.89 18.24 55 17.36 18.70 17.13 60 16.06 17.21 15.47 For the comparison point of view, the PSNR values of different window size with the help of three different window filter techniques in the variation of noise density from 1 to 60 is plotted and it is shown in the figure 2. Also, the original image on which all the values of PSNR is calculated is shown in the figure 3. The noisy images and their respective filtered images are also shown in the figure 4 with the different density of noise. Figure 2: PSNR of different window size with different window filter technique in the variation of noise (salt & paper) density 1 to 60. Figure 3: Original Image of Cameraman V. CONCLUSION In the above comparison graph, It is been seen that up to 12 percent noise DWM filter with 3x3 window is having best performance while in between 12 to 33 percent noise CWM filter with 3x3 window has best performance. but for the high density noise CWM filter with 5x5 window provides maximum filtering. It is been concluded that At higher level of noise, large window size in the filters works better 0 10 20 30 40 50 60 10 15 20 25 30 35 COMPARISION OF MEDIAN FILTERS percentage of noise PSNR 3x3 SMF 3x3 CWM 3x3 DWM 5x5 SMF 5x5 CWM 5x5 DWM
  • 4. Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05 www.ijera.com 4 | P a g e than small window size while at lower level of noise small window size performs better. 5% (salt & paper) noise DWM filter With 3x3 Window size 25% (salt & paper) noise CWM filter With 3x3 Window size 60% (salt & paper) noise CWM filter With 5x5 Window size Noisy Image Filtered Image Noisy Image Filtered Image Noisy Image Filtered Image
  • 5. Rashmi Sharma Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 5, Issue 3, ( Part -4) March 2015, pp.01-05 www.ijera.com 5 | P a g e REFERENCES [1] Kavita Tewari, Manorama V. Tiwari, “Efficient Removal of Impulse Noise in Digital Images” , nternational Journal of Scientific and Research Publications, Volume 2, Issue 10, October 2012. [2] K J Sreeja1, Prudhvi Raj Budumuru2 “A New Switching Median Filter for Impulse Noise Removal from Corrupted Images” , Int. Journal of Engineering Research and Applications, ISSN : 2248-9622, Vol. 3, Issue 6, Nov-Dec 2013, pp.496-501. [3] Geoffrine Judith.M.C1 and N.Kumarasabapathy2, “Study and analysis of impulse noise reduction filters” , Signal & Image Processing : An International Journal(SIPIJ) Vol.2, No.1, March 2011. [4] Mr. Khemchandra N. Attarde1, Prof. A.M.Patil2 and Mr. Parmatma P. Pandey3, “Simple Adaptive Switching Median Filter for the Removal of Impulse Noise from corrupted images" , International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 3, June-July, 2013. [5] Hani M. Ibrahem “An Efficient and Simple Switching Filter for Removal of High Density Salt-and-Pepper Noise”, I.J. Image, Graphics and Signal Processing, 2013, 12, 1-8. [6] Chung-Chia Kang, Wen-June Wang, “Modified switching median filter with one more noise detector for impulse removal,” Int. J. Electron. Commun. (AEU) 63 (2009) 998-1004. [7] Zhou Wang and David Zhang, “Progressive Switching Median Filter for the Removal of Impulse Noise from Highly Corrupted Images,” IEEE transactions on circuits and systems—ii: analog and digital signal processing, vol. 46, no. 1, January 1999. [8] Chung-Chia Kang, Wen-June Wang, “Modified switching median filter with one more noise detector for impulse removal,” Int. J. Electron. Commun. (AEU) 63 (2009) 998-1004. [9] Ko S J, Lee Y H (1991) Center weighted median filters and their applications to image enhancement. IEEE Trans. Circuits Syst. 38(9): 984-993