SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Electronics and Communication Engineering (IOSR-JECE)
e-ISSN: 2278-2834,p- ISSN: 2278-8735.Volume 5, Issue 5 (Mar. - Apr. 2013), PP 11-15
www.iosrjournals.org
www.iosrjournals.org 11 | Page
Restoration of Images Corrupted by High Density Salt & Pepper
Noise through Adaptive Median Based Modified Mean Filter
R.Nisha1
, P.Jeenath Nabela2
, M.Sudheekshitha3
,B.Madhusudhana Reddy4
1,2,3,4
ECE,Vel Tech High Tech Dr.Rangarajan Dr. Sakunthala Engineering college, Chennai, India
Abstract: In this paper an efficient algorithm is proposed for removal of salt & pepper noise from digital
images. Salt and pepper noise in images is present due to bit errors in transmission or introduced during the
signal acquisition stage. It represents itself as randomly occurring white and black pixels. This noise can be
removed using standard Median Filter (SMF), Progressive Switched Median Filter (PSMF) under low density
noise conditions. Decision Based Algorithm (DBA) and Modified Decision Based Unsymmetric Trimmed
Median Filter (MDBUTMF) do not give better results at high noise density. So, in this project, this drawback
will be overcome by using Adaptive Median based Modified Mean Filter (AMMF). This proposed algorithm
shows better Peak Signal-to-Noise Ratio and clear image than the existing algorithm.
Keywords- Median filter, Progressive Switched Median Filter, Decision Based Algorithm, Modified Decision
Based Unsymmetric Trimmed Median Filter
I. Introduction
Image noise is a random variation of brightness or color information in images. It can be produced by
the sensor and circuitry of a digital camera, during image acquisition and transmission and faulty switching.
This noise leads to blurring of image and loss of image details such as clarity. It can corrupt the images where
the corrupted pixel takes either maximum or minimum gray level. There are two types of impulse noise, they are
salt and pepper noise and random valued noise. Salt and pepper noise can corrupt the images where the
corrupted pixel takes either maximum or minimum gray level. Several nonlinear filters have been proposed for
restoration of images contaminated by salt and pepper noise. Among these SMF is a non-linear process useful in
reducing salt and pepper noise. It is also useful in preserving edges in an image while removing noise. It
replaces the value of a pixel by the median of the gray levels in the neighborhood of that pixel [1]. However, a
major drawback of SMF is that the filter is effective only at low noise densities; its performance is poor when
the number of noise pixels in the window is greater than half the number of pixels in the window and some
median algorithms are not good for real time processing [2].
In PSMF, the decision is based on a predefined threshold value [3]. The algorithm is developed based
on the following two main points: Switching scheme and Progressive methods. The major drawback of this
method is that defining a robust decision is difficult and when a noise level is high, the edges may not be
recovered satisfactorily. To overcome the above drawback, DBA is proposed [4]. In this, the noisy pixel can be
removed either by the median value or by the mean of the previously processed neighboring pixel values. At
high noise density the median value will be 0 or 255 which is noisy. In such case, neighboring pixel is used for
replacement. This repeated replacement of neighboring pixel produces streaking effect. To avoid the major
drawback of DBA, MDBUTMF is proposed. In this algorithm the noisy image is denoised by using “3 X 3”
window elements and then pixels are arranged in increasing or decreasing order. Then the pixel values „0‟s and
„255‟s in the image (i.e., the pixel values responsible for the salt and pepper noise) are removed from the image.
Then the median value of the remaining pixels is taken. This median value is used to replace the noisy pixel [5].
This algorithm does not give better results at high noise density ranging from 70% to 95%. So to overcome the
drawback of MDBUTMF algorithm, a new & efficient algorithm is proposed which is suitable for elimination of
high density impulse noise ranging from 60% to 95%.
The proposed AMMF algorithm consists of two stages: in first stage the noisy image is processed by
adaptive median filter and in the second stage the output of first stage is further processed by modified mean
filter. The proposed MDBUTMF algorithm removes this drawback at high noise density and it gives better Peak
Signal-to-Noise Ratio (PSNR) values than the existing algorithm. This paper is organized in the following
manner. Section 2 briefly describes about proposed algorithm, its performance is described in section 3 and
section 4 gives the conclusion of paper.
II. Proposed AMMF algorithm
The proposed AMMF algorithm consists of two stages, in first stage the noisy image is processed by
adaptive median filter. In second stage the output of first stage is further processed by modified mean filter if the
image is corrupted by high density salt & paper noise. The first stage classifies pixels as noise by comparing
Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median
www.iosrjournals.org 12 | Page
each pixel to its neighborhood pixels. The size of the neighborhood is adjustable. A pixel is considered noisy
when it is different from majority of its neighborhood pixels. These noisy pixels are replaced by the median
value of neighborhood pixels. Further the second stage also works in two steps: in the first step the noisy pixels
are detected and in the second step each noisy pixel are replaced by the mean of noise free pixel of 2×2 window.
2.1. Noise Detection in Modified Mean filter
In this section the main purpose is to identify the “noisy pixel” and “noise free pixels”. It is described
as follows: We assume that the two intensities that present the impulse noise are the maximum and the
minimum values of the images dynamic range (i.e. 0 and L-1). Thus, in this stage, at each pixel location (x, y)
,we mark the mask α by using the equation (1)
𝛼 𝑥, 𝑦 =
1 𝑓𝑜𝑟 𝑔 𝑥, 𝑦 = 𝐿 − 1
1 𝑓𝑜𝑟 𝑔 𝑥, 𝑦 = 1
0 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒
……………. (1)
Where the value „1‟ indicates noisy pixel and the value „0‟ indicates the noise free pixel
2.2. Implementation of AMMF Algorithm
The proposed algorithm involves the following steps to remove the impulse noise:
Stage-I:
Step(1). Initialize the window size (maximum value of window size is 13X13) of the filter.
Step(2). Check if centre pixel is noisy in selected window, if YES then go to step 3. Otherwise move centre of
window to next pixel and redo step 2.
Step(3). Find the value of Zmin, Zmax and Zmed in the selected window.
Step(4). Determine if Zmed is noisy by Zmin < Zmedn< Zmax. If it holds, Zmed is noise free pixel and jump to step 6.
Otherwise, Zmed is noisy and go to step 5.
Step(5). Increase window size and go back to Step 3.
Step(6). Replace the centre pixel with Zmed.
Step(7). Reset window size and move the centre of window to next pixel.
Step(8). Repeat the steps until all pixels are processed.
At high noise density of salt and paper noise, some of pixels are still noisy in stage-I which are further removed
by passing through the entire image by stage II algorithm.
Stage-II:
Step(i). Initialize the window size of the filter by 2×2 window.
Step(ii). Find out the noise free pixels present in 2×2 window.
Step(iii). Find out the mean value of the noise free pixels in selected window.
Step(iv). Replace the noisy pixel by the calculated mean value in step (iii).
Step(v). Repeat steps from (i)- (iv) to process the entire image for removal of Salt & Pepper Noise.
III. Performance of AMMF algorithm
In order to demonstrate the performance of AMMF algorithm, it is tested on different gray scale
natural images (i.e. 8-bit/pixel) with the noise density (N.D.) ranging from 10% to 95%. The AMMF algorithm
gives better result as compared to SMF, centre weighted median filter (CWMF) [6], PSMF, open-close sequence
filter (OCSF), DBA, MDBUTMF. Each time the test image is corrupted by salt & pepper noise of different
noise densities ranging from 10% to 95%. The performance of AMMF algorithm is expressed in terms of PSNR
and mean squared error (MSE).The PSNR estimates the quality of a reconstructed image with respect to an
original image. Reconstructed images with higher PSNR are better. PSNR is defined in dB in equation (2).
PSNR = 10x log10
2552
MSE
…………………. (2)
Where MSE is mean squared error between original image (x) and denoised image (𝑥) which is given by
equation (3)
MSE =
1
𝑁1x𝑁2
(𝑥 𝑖, 𝑗 − 𝑥 𝑖, 𝑗 )2𝑁2
𝑗=1
𝑁1
𝑖=1 …….(3)
3.1 Experiment 1
Table 1 and Table 2 demonstrate the comparison of PSNR and MSE values of different filters respectively
for gray scale House image with N.D ranging from 10% to 95%. The performance of AMMF algorithm is
compared with various existing techniques such as SMF, PSMF, DBA, and MDBUTMF. It can be noticed from
Table1 and Table 2 that AMMF algorithm, gives better result in comparison to other existing techniques in
terms of PSNR & MSE for low level noise density as well as high level noise density. Fig. 1 illustrates the
graphical comparison of PSNR performance metric for different denoising algorithms for House. Fig. 2
illustrates the graphical comparison of MSE performance metric for different denoising algorithms for House.
Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median
www.iosrjournals.org 13 | Page
3.2 Experiment 2
In order to demonstrate visual enhancement of AMMF algorithm, another experiment is conducted on
House image with N.D ranging from 80% to 95%. The visual enhancement of AMMF algorithm is compared
with various existing techniques such as SMF, PSMF, DBA, and MDBUTMF. The visual enhancement of
House & Lena images are shown in Fig. 5(B), 5(C), 5(D), 5(E), 5(F), 6(B), 6(C), 6(D), 6(E), 6(F), 6(G), 6(H),
Fig. 7(B),7(C), 7(D), 7(E), 7(F), with noise density (N.D.) i.e. 0.80, 0.90 and 0.95 respectively. It is clear from
Fig. 5 to Fig.7 that the image recovered from the AMMF algorithm is better than other noise removal algorithms
in terms of visibility.
IV. Conclusion
This paper proposed a new algorithm (AMMF) for removal of salt & pepper noise from digital images.
The AMMF algorithm has been tested on different gray scale natural images with noise density ranging from
10% to 95%. The performance of AMMF algorithm has been evaluated and compared in terms of PSNR and
MSE values. The performance of AMMF algorithm has been compared with various existing techniques such as
SMF, PSMF, DBA, MDBUTMF. Both visual and quantitative results are demonstrated. The AMMF algorithm
Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median
www.iosrjournals.org 14 | Page
demonstrated well in low level noise density as well as high level noise density. Even at 95% noise density
levels the proposed algorithm provided better results in comparison with other existing algorithms.
Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median
www.iosrjournals.org 15 | Page
REFERENCES
Journal Papers:
[1] N.C Gallagher Jr and G.W. Wise, A theoretical analysis of the properties of median filter, IEEE Transactions on Acoustics, Speech,
Signal Processing, vol. ASSP-27, 1981, pp.1136- 1141.
[2] T. Huang, G. Yang, and G. Tang, A fast two dimensional median filtering algorithm, IEEE Transactions on Acoustics, Speech,
Signal
[3] Z. Wang and D. Zhang, Progressive switching median filter for the removal of impulse noise from highly corrupted images, IEEE
Transactions on Circuits and Systems-II, vol. 46, 1999, pp. 78–80.
[4] K. S. Srinivasan and D. Ebenezer, A new fast and efficient decision based algorithm for removal of high density impulse noise,
IEEE Signal Processing Letters, vol. 14, no. 3, 2007, pp. 189–192.
[5] V. Jayaraj and D. Ebenezer, A new switching based median filtering scheme and algorithmfor removal of high-density salt and
pepper noise in image, EURASIP Journal Advanced Signal Processing, vol. 2010, February 2010.
[6] T. Chen and H. R. Wu, Adaptive impulse detection using centre weighted median filters, IEEE Signal Processing Letters, vol. 8, no.
1, 2001, pp. 1–3.
Books:
[7] R. C. Gonzalez, and Woods R.E, Digital Image Processing. (Addison-Wesley, Boston, 2005.)

More Related Content

What's hot

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
 
Reduction of types of Noises in dental Images
Reduction of types of Noises in dental ImagesReduction of types of Noises in dental Images
Reduction of types of Noises in dental ImagesEditor IJCATR
 
impulse noise filter
impulse noise filter impulse noise filter
impulse noise filter yousef_
 
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...CSCJournals
 
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
 
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...IJERA Editor
 
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color Images
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color ImagesReduced Ordering Based Approach to Impulsive Noise Suppression in Color Images
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color ImagesIDES Editor
 
An Adaptive approach to retrieve image affected by impulse noise from documents
An Adaptive approach to retrieve image affected by impulse noise from documentsAn Adaptive approach to retrieve image affected by impulse noise from documents
An Adaptive approach to retrieve image affected by impulse noise from documentsiosrjce
 
IRJET- A Review on Various Restoration Techniques in Digital Image Processing
IRJET- A Review on Various Restoration Techniques in Digital Image ProcessingIRJET- A Review on Various Restoration Techniques in Digital Image Processing
IRJET- A Review on Various Restoration Techniques in Digital Image ProcessingIRJET Journal
 
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
 
Matlab Image Restoration Techniques
Matlab Image Restoration TechniquesMatlab Image Restoration Techniques
Matlab Image Restoration TechniquesDataminingTools Inc
 

What's hot (17)

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)
 
Gaussian noise
Gaussian noiseGaussian noise
Gaussian noise
 
Reduction of types of Noises in dental Images
Reduction of types of Noises in dental ImagesReduction of types of Noises in dental Images
Reduction of types of Noises in dental Images
 
impulse noise filter
impulse noise filter impulse noise filter
impulse noise filter
 
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...
Robustness of Median Filter For Suppression of Salt and Pepper Noise (SPN) an...
 
Image denoising
Image denoisingImage 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)
 
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...
Analysis of Non Linear Filters with Various Density of Impulse Noise for Diff...
 
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color Images
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color ImagesReduced Ordering Based Approach to Impulsive Noise Suppression in Color Images
Reduced Ordering Based Approach to Impulsive Noise Suppression in Color Images
 
DIP - Image Restoration
DIP - Image RestorationDIP - Image Restoration
DIP - Image Restoration
 
Lecture 5
Lecture 5Lecture 5
Lecture 5
 
An Adaptive approach to retrieve image affected by impulse noise from documents
An Adaptive approach to retrieve image affected by impulse noise from documentsAn Adaptive approach to retrieve image affected by impulse noise from documents
An Adaptive approach to retrieve image affected by impulse noise from documents
 
Noise
NoiseNoise
Noise
 
IRJET- A Review on Various Restoration Techniques in Digital Image Processing
IRJET- A Review on Various Restoration Techniques in Digital Image ProcessingIRJET- A Review on Various Restoration Techniques in Digital Image Processing
IRJET- A Review on Various Restoration Techniques in Digital Image Processing
 
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...
 
Aw044306308
Aw044306308Aw044306308
Aw044306308
 
Matlab Image Restoration Techniques
Matlab Image Restoration TechniquesMatlab Image Restoration Techniques
Matlab Image Restoration Techniques
 

Similar to Adaptive Median Filter Removes High Density Salt & Pepper Noise

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
 
saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013pranay yadav
 
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
 
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 highIaetsd Iaetsd
 
An iterative unsymmetrical trimmed midpoint median filter for removal of high...
An iterative unsymmetrical trimmed midpoint median filter for removal of high...An iterative unsymmetrical trimmed midpoint median filter for removal of high...
An iterative unsymmetrical trimmed midpoint median filter for removal of high...eSAT Publishing House
 
Comparison of Denoising Filters on Greyscale TEM Image for Different Noise
Comparison of Denoising Filters on Greyscale TEM Image for  Different NoiseComparison of Denoising Filters on Greyscale TEM Image for  Different Noise
Comparison of Denoising Filters on Greyscale TEM Image for Different NoiseIOSR Journals
 
Study and Analysis of Impulse Noise Reduction Filters
Study and Analysis of Impulse Noise Reduction FiltersStudy and Analysis of Impulse Noise Reduction Filters
Study and Analysis of Impulse Noise Reduction Filterssipij
 
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial Domains
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial DomainsAccelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial Domains
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial DomainsCSCJournals
 
reducing noises in images
reducing noises in imagesreducing noises in images
reducing noises in imagesaswathdas
 
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 RVINIOSR Journals
 
A new methodology for sp noise removal in digital image processing
A new methodology for sp noise removal in digital image processing A new methodology for sp noise removal in digital image processing
A new methodology for sp noise removal in digital image processing ijfcstjournal
 
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...A Decision tree and Conditional Median Filter Based Denoising for impulse noi...
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...IJERA Editor
 
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...IJEACS
 

Similar to Adaptive Median Filter Removes High Density Salt & Pepper Noise (20)

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...
 
saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013
 
Cz4301586590
Cz4301586590Cz4301586590
Cz4301586590
 
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 ...
 
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
 
Mo2521632166
Mo2521632166Mo2521632166
Mo2521632166
 
An iterative unsymmetrical trimmed midpoint median filter for removal of high...
An iterative unsymmetrical trimmed midpoint median filter for removal of high...An iterative unsymmetrical trimmed midpoint median filter for removal of high...
An iterative unsymmetrical trimmed midpoint median filter for removal of high...
 
I010324954
I010324954I010324954
I010324954
 
Comparison of Denoising Filters on Greyscale TEM Image for Different Noise
Comparison of Denoising Filters on Greyscale TEM Image for  Different NoiseComparison of Denoising Filters on Greyscale TEM Image for  Different Noise
Comparison of Denoising Filters on Greyscale TEM Image for Different Noise
 
Study and Analysis of Impulse Noise Reduction Filters
Study and Analysis of Impulse Noise Reduction FiltersStudy and Analysis of Impulse Noise Reduction Filters
Study and Analysis of Impulse Noise Reduction Filters
 
Image Filtering
Image FilteringImage Filtering
Image Filtering
 
K010615562
K010615562K010615562
K010615562
 
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial Domains
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial DomainsAccelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial Domains
Accelerated Joint Image Despeckling Algorithm in the Wavelet and Spatial Domains
 
reducing noises in images
reducing noises in imagesreducing noises in images
reducing noises in images
 
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
 
M017218088
M017218088M017218088
M017218088
 
A new methodology for sp noise removal in digital image processing
A new methodology for sp noise removal in digital image processing A new methodology for sp noise removal in digital image processing
A new methodology for sp noise removal in digital image processing
 
H017334953
H017334953H017334953
H017334953
 
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...A Decision tree and Conditional Median Filter Based Denoising for impulse noi...
A Decision tree and Conditional Median Filter Based Denoising for impulse noi...
 
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 

Recently uploaded (20)

MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 

Adaptive Median Filter Removes High Density Salt & Pepper Noise

  • 1. IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-ISSN: 2278-2834,p- ISSN: 2278-8735.Volume 5, Issue 5 (Mar. - Apr. 2013), PP 11-15 www.iosrjournals.org www.iosrjournals.org 11 | Page Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median Based Modified Mean Filter R.Nisha1 , P.Jeenath Nabela2 , M.Sudheekshitha3 ,B.Madhusudhana Reddy4 1,2,3,4 ECE,Vel Tech High Tech Dr.Rangarajan Dr. Sakunthala Engineering college, Chennai, India Abstract: In this paper an efficient algorithm is proposed for removal of salt & pepper noise from digital images. Salt and pepper noise in images is present due to bit errors in transmission or introduced during the signal acquisition stage. It represents itself as randomly occurring white and black pixels. This noise can be removed using standard Median Filter (SMF), Progressive Switched Median Filter (PSMF) under low density noise conditions. Decision Based Algorithm (DBA) and Modified Decision Based Unsymmetric Trimmed Median Filter (MDBUTMF) do not give better results at high noise density. So, in this project, this drawback will be overcome by using Adaptive Median based Modified Mean Filter (AMMF). This proposed algorithm shows better Peak Signal-to-Noise Ratio and clear image than the existing algorithm. Keywords- Median filter, Progressive Switched Median Filter, Decision Based Algorithm, Modified Decision Based Unsymmetric Trimmed Median Filter I. Introduction Image noise is a random variation of brightness or color information in images. It can be produced by the sensor and circuitry of a digital camera, during image acquisition and transmission and faulty switching. This noise leads to blurring of image and loss of image details such as clarity. It can corrupt the images where the corrupted pixel takes either maximum or minimum gray level. There are two types of impulse noise, they are salt and pepper noise and random valued noise. Salt and pepper noise can corrupt the images where the corrupted pixel takes either maximum or minimum gray level. Several nonlinear filters have been proposed for restoration of images contaminated by salt and pepper noise. Among these SMF is a non-linear process useful in reducing salt and pepper noise. It is also useful in preserving edges in an image while removing noise. It replaces the value of a pixel by the median of the gray levels in the neighborhood of that pixel [1]. However, a major drawback of SMF is that the filter is effective only at low noise densities; its performance is poor when the number of noise pixels in the window is greater than half the number of pixels in the window and some median algorithms are not good for real time processing [2]. In PSMF, the decision is based on a predefined threshold value [3]. The algorithm is developed based on the following two main points: Switching scheme and Progressive methods. The major drawback of this method is that defining a robust decision is difficult and when a noise level is high, the edges may not be recovered satisfactorily. To overcome the above drawback, DBA is proposed [4]. In this, the noisy pixel can be removed either by the median value or by the mean of the previously processed neighboring pixel values. At high noise density the median value will be 0 or 255 which is noisy. In such case, neighboring pixel is used for replacement. This repeated replacement of neighboring pixel produces streaking effect. To avoid the major drawback of DBA, MDBUTMF is proposed. In this algorithm the noisy image is denoised by using “3 X 3” window elements and then pixels are arranged in increasing or decreasing order. Then the pixel values „0‟s and „255‟s in the image (i.e., the pixel values responsible for the salt and pepper noise) are removed from the image. Then the median value of the remaining pixels is taken. This median value is used to replace the noisy pixel [5]. This algorithm does not give better results at high noise density ranging from 70% to 95%. So to overcome the drawback of MDBUTMF algorithm, a new & efficient algorithm is proposed which is suitable for elimination of high density impulse noise ranging from 60% to 95%. The proposed AMMF algorithm consists of two stages: in first stage the noisy image is processed by adaptive median filter and in the second stage the output of first stage is further processed by modified mean filter. The proposed MDBUTMF algorithm removes this drawback at high noise density and it gives better Peak Signal-to-Noise Ratio (PSNR) values than the existing algorithm. This paper is organized in the following manner. Section 2 briefly describes about proposed algorithm, its performance is described in section 3 and section 4 gives the conclusion of paper. II. Proposed AMMF algorithm The proposed AMMF algorithm consists of two stages, in first stage the noisy image is processed by adaptive median filter. In second stage the output of first stage is further processed by modified mean filter if the image is corrupted by high density salt & paper noise. The first stage classifies pixels as noise by comparing
  • 2. Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median www.iosrjournals.org 12 | Page each pixel to its neighborhood pixels. The size of the neighborhood is adjustable. A pixel is considered noisy when it is different from majority of its neighborhood pixels. These noisy pixels are replaced by the median value of neighborhood pixels. Further the second stage also works in two steps: in the first step the noisy pixels are detected and in the second step each noisy pixel are replaced by the mean of noise free pixel of 2×2 window. 2.1. Noise Detection in Modified Mean filter In this section the main purpose is to identify the “noisy pixel” and “noise free pixels”. It is described as follows: We assume that the two intensities that present the impulse noise are the maximum and the minimum values of the images dynamic range (i.e. 0 and L-1). Thus, in this stage, at each pixel location (x, y) ,we mark the mask α by using the equation (1) 𝛼 𝑥, 𝑦 = 1 𝑓𝑜𝑟 𝑔 𝑥, 𝑦 = 𝐿 − 1 1 𝑓𝑜𝑟 𝑔 𝑥, 𝑦 = 1 0 𝑜𝑡𝑕𝑒𝑟𝑤𝑖𝑠𝑒 ……………. (1) Where the value „1‟ indicates noisy pixel and the value „0‟ indicates the noise free pixel 2.2. Implementation of AMMF Algorithm The proposed algorithm involves the following steps to remove the impulse noise: Stage-I: Step(1). Initialize the window size (maximum value of window size is 13X13) of the filter. Step(2). Check if centre pixel is noisy in selected window, if YES then go to step 3. Otherwise move centre of window to next pixel and redo step 2. Step(3). Find the value of Zmin, Zmax and Zmed in the selected window. Step(4). Determine if Zmed is noisy by Zmin < Zmedn< Zmax. If it holds, Zmed is noise free pixel and jump to step 6. Otherwise, Zmed is noisy and go to step 5. Step(5). Increase window size and go back to Step 3. Step(6). Replace the centre pixel with Zmed. Step(7). Reset window size and move the centre of window to next pixel. Step(8). Repeat the steps until all pixels are processed. At high noise density of salt and paper noise, some of pixels are still noisy in stage-I which are further removed by passing through the entire image by stage II algorithm. Stage-II: Step(i). Initialize the window size of the filter by 2×2 window. Step(ii). Find out the noise free pixels present in 2×2 window. Step(iii). Find out the mean value of the noise free pixels in selected window. Step(iv). Replace the noisy pixel by the calculated mean value in step (iii). Step(v). Repeat steps from (i)- (iv) to process the entire image for removal of Salt & Pepper Noise. III. Performance of AMMF algorithm In order to demonstrate the performance of AMMF algorithm, it is tested on different gray scale natural images (i.e. 8-bit/pixel) with the noise density (N.D.) ranging from 10% to 95%. The AMMF algorithm gives better result as compared to SMF, centre weighted median filter (CWMF) [6], PSMF, open-close sequence filter (OCSF), DBA, MDBUTMF. Each time the test image is corrupted by salt & pepper noise of different noise densities ranging from 10% to 95%. The performance of AMMF algorithm is expressed in terms of PSNR and mean squared error (MSE).The PSNR estimates the quality of a reconstructed image with respect to an original image. Reconstructed images with higher PSNR are better. PSNR is defined in dB in equation (2). PSNR = 10x log10 2552 MSE …………………. (2) Where MSE is mean squared error between original image (x) and denoised image (𝑥) which is given by equation (3) MSE = 1 𝑁1x𝑁2 (𝑥 𝑖, 𝑗 − 𝑥 𝑖, 𝑗 )2𝑁2 𝑗=1 𝑁1 𝑖=1 …….(3) 3.1 Experiment 1 Table 1 and Table 2 demonstrate the comparison of PSNR and MSE values of different filters respectively for gray scale House image with N.D ranging from 10% to 95%. The performance of AMMF algorithm is compared with various existing techniques such as SMF, PSMF, DBA, and MDBUTMF. It can be noticed from Table1 and Table 2 that AMMF algorithm, gives better result in comparison to other existing techniques in terms of PSNR & MSE for low level noise density as well as high level noise density. Fig. 1 illustrates the graphical comparison of PSNR performance metric for different denoising algorithms for House. Fig. 2 illustrates the graphical comparison of MSE performance metric for different denoising algorithms for House.
  • 3. Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median www.iosrjournals.org 13 | Page 3.2 Experiment 2 In order to demonstrate visual enhancement of AMMF algorithm, another experiment is conducted on House image with N.D ranging from 80% to 95%. The visual enhancement of AMMF algorithm is compared with various existing techniques such as SMF, PSMF, DBA, and MDBUTMF. The visual enhancement of House & Lena images are shown in Fig. 5(B), 5(C), 5(D), 5(E), 5(F), 6(B), 6(C), 6(D), 6(E), 6(F), 6(G), 6(H), Fig. 7(B),7(C), 7(D), 7(E), 7(F), with noise density (N.D.) i.e. 0.80, 0.90 and 0.95 respectively. It is clear from Fig. 5 to Fig.7 that the image recovered from the AMMF algorithm is better than other noise removal algorithms in terms of visibility. IV. Conclusion This paper proposed a new algorithm (AMMF) for removal of salt & pepper noise from digital images. The AMMF algorithm has been tested on different gray scale natural images with noise density ranging from 10% to 95%. The performance of AMMF algorithm has been evaluated and compared in terms of PSNR and MSE values. The performance of AMMF algorithm has been compared with various existing techniques such as SMF, PSMF, DBA, MDBUTMF. Both visual and quantitative results are demonstrated. The AMMF algorithm
  • 4. Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median www.iosrjournals.org 14 | Page demonstrated well in low level noise density as well as high level noise density. Even at 95% noise density levels the proposed algorithm provided better results in comparison with other existing algorithms.
  • 5. Restoration of Images Corrupted by High Density Salt & Pepper Noise through Adaptive Median www.iosrjournals.org 15 | Page REFERENCES Journal Papers: [1] N.C Gallagher Jr and G.W. Wise, A theoretical analysis of the properties of median filter, IEEE Transactions on Acoustics, Speech, Signal Processing, vol. ASSP-27, 1981, pp.1136- 1141. [2] T. Huang, G. Yang, and G. Tang, A fast two dimensional median filtering algorithm, IEEE Transactions on Acoustics, Speech, Signal [3] Z. Wang and D. Zhang, Progressive switching median filter for the removal of impulse noise from highly corrupted images, IEEE Transactions on Circuits and Systems-II, vol. 46, 1999, pp. 78–80. [4] K. S. Srinivasan and D. Ebenezer, A new fast and efficient decision based algorithm for removal of high density impulse noise, IEEE Signal Processing Letters, vol. 14, no. 3, 2007, pp. 189–192. [5] V. Jayaraj and D. Ebenezer, A new switching based median filtering scheme and algorithmfor removal of high-density salt and pepper noise in image, EURASIP Journal Advanced Signal Processing, vol. 2010, February 2010. [6] T. Chen and H. R. Wu, Adaptive impulse detection using centre weighted median filters, IEEE Signal Processing Letters, vol. 8, no. 1, 2001, pp. 1–3. Books: [7] R. C. Gonzalez, and Woods R.E, Digital Image Processing. (Addison-Wesley, Boston, 2005.)