SlideShare a Scribd company logo
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
DOI : 10.5121/sipij.2011.2405 47
ADAPTIVE NOISE REDUCTION SCHEME FOR SALT
AND PEPPER
Tina Gebreyohannes1
and Dong-Yoon Kim2
1
Department of Computer Engineering, Ajou University, Suwon, South Korea
tinosaturn@gmail.com
2
Departent of Computer Engineering, Ajou University, Suwon, South Korea
dykim@ajou.ac.kr
ABSTRACT
In this paper, a new adaptive noise reduction scheme for images corrupted by impulse noise is presented.
The proposed scheme efficiently identifies and reduces salt and pepper noise. MAG (Mean Absolute
Gradient) is used to identify pixels which are most likely corrupted by salt and pepper noise that are
candidates for further median based noise reduction processing. Directional filtering is then applied after
noise reduction to achieve a good tradeoff between detail preservation and noise removal. The proposed
scheme can remove salt and pepper noise with noise density as high as 90% and produce better result in
terms of qualitative and quantitative measures of images.
KEYWORDS
MAG, Directional filtering, Noise detection, Noise reduction
1. INTRODUCTION
The two most common types of noise in image processing are Gaussian noise and Impulse noise,
also known as salt and pepper noise. This type of noise may appear in digital image due
contaminated impulse noise, which is caused by malfunctioning pixels in camera sensors, faulty
memory location in hardware, or transmission in noisy channel [9]. Salt and pepper noise
scattered throughout the image in such a way pixels can take only the maximum and minimum
values (0 and 255 respectively) in the dynamic range.
Many researches have been conducted and numerous algorithms were proposed to remove salt
and pepper noise. Among these noise reduction techniques, majority splits the noise removal
procedures into preliminarily detection of pixels corrupted by impulse noise followed by filtering
the noise detected on the previous phase [8]. Standard median filter (SMF) [7] was one of
famous among others due to its great denoising performance and computational efficiency. But
since the conventional median filter applies the median operation to each pixel whether it is
corrupted or not, it suffers from preserving some details of the image as the noise density
increases. More improved algorithms such as adaptive median filter (AMF) [2], decision-based
algorithm (DBA) [1] and convolution-based algorithm (CBA) [3] mainly focus on noise detector.
Pixels detected by the noise detector will be considered as noise and shall further be processed in
their respective noise reduction scheme. Having such mechanism with phases would highly
preserve the details of the image and save the restored image from having blurred and distorted
feature.
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
48
The proposed algorithm in this paper also greatly focuses on how to effectively detect the salt and
pepper noise and efficiently restore the image. The mechanism adopted by the proposed scheme
consists of three phases. The first phase determines whether a pixel is noise or not based on some
predefined threshold and calculated values. Once pixels are detected as noise in previous phase,
their new value will be estimated and set in noise reduction phase. Finally a conditional image
enhancement phase will be conducted for those images which have been corrupted with high
density noise to preserve edges and details of the restored image. This makes the proposed
algorithm to have an outstanding performance even at noise density as high as 90%.
The rest of this paper is organized as follows. Section 2 describes the proposed scheme. Section 3
presents the experimental results. And the last section, Section 4 concludes this paper.
2. PROPOSED SCHEME
In this paper, three steps adaptive noise reduction scheme is proposed for salt and pepper noise.
For (i,j) X = {1,…..,N} x {1,…..,N}, let xij be the gray level of the original image X. The
observed grey level at pixel location (i,j) is given by :
(1)
Where p is noise ratio contaminated in the image.
2.1. Noise detection scheme
To classify corrupted and uncorrupted pixels Mean Absolute Gradient (MAG) will be applied. A
small MAG indicates a flat region, and a large MAG usually indicates complex region or impulse
noise region. MAG is defined as follows:
(2)
Where F(i) denotes the intensity value of pixel in a region, F(0) is the intensity of the pixel in the
center as shown in Fig. 1 and N is the number of pixels in the region.
Figure 1. 3x3 MAG window
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
49
(3)
A reasonable threshold T can be determined using computer simulation. If Zij= 1, then the pixel
Xij is marked as noise candidate; otherwise the pixel Xij is noise free.
2.2. Noise Reduction Scheme
For the noisy pixel detected, we use 3x3 window M as shown in eq. 4.
(4)
By sorting elements in M according to their distance from the center pixel, we get the sorted
sequence as follow:
i. Sort the five element { , , , , and } in ascending order, then
we get { } where { }.
Median = .
ii. Sort the other four elements including Median from step (i) {
} in ascending order, then we get { }
where { }.
Median = .
Then the restored image y with yij is calculated as follow:
(5)
2.3. Image Enhancement
To preserve the details and edges of the restored image we apply directional filtering which will
enhance the image quality. In order to do so, we apply standard deviation on the noisy image to
determine whether directional filtering is needed to be applied or not. Standard deviation is
defined as follows:
(6)
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
50
Where F(i) denotes the intensity values of the noisy image, N is the number of pixels in the image
and µ is mean of the noisy image. If standard deviation is greater than the threshold T, then
directional filter will be applied to the processed image accordingly.
A pixel Xk in the image is partitioned into (Y1, Y2, Y3, Y4) where {X1, X2, X4} belongs to Y1,
which are in the upper left portion of the mask.
So that (7)
Y2, Y3 and Y4 with {X2, X3, X6}, {X4, X7, X8} and {X6, X8, X9} respectively will also be
calculated in the same manner.
XK = Average (Y1, Y2, Y3, Y4) (8)
Figure 2. Directional filtering window
3. EXPERIMENTAL RESULTS
In this section, the experimental result of the proposed scheme is presented. A variety of
simulations are carried out on 512x512 grey scale Lena image to verify the performances of
various restoration methods, including AMF[2], DBA[1],CBA[3] and the proposed scheme. In
the simulation, images are corrupted by “salt” (255) and “pepper” (0) noise with equal
Xk
X1 X2 X3
X4
X7 X8
X6
X9
y2
y3 y4
Xk
y1
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
51
probability. The noise density is varied from 10% to 90% with 10% incremental, and the
restoration performance is quantitatively measured by peak signal-to-noise ratio (PSNR). Peak
signal to noise ratio (PSNR) is defined as:
(9)
where 255 is the peak signal for 8 bit image and MSE is mean square error given by:
(10)
Where fij and fl
ij are the pixel values at position (i,j) of original and processed image respectively.
The PSNR comparison of various algorithms including DBA, AMF, CBA and the proposed
scheme are presented in Figure 3 graphically. Figure 4 and Figure 5 show the subjective visual
qualities of the filtered image using various algorithms for the image “Lena” corrupted by 50%
and 80% impulse noise respectively.
Figure 3.Comparison of various scheme in PSNR for Lena image with various ratio of salt and
pepper noise
When the noise density is greater than 50%, other algorithm’s PSNR drops sharply unlike the
proposed algorithm which doesn’t show drastic change in PSNR values. On the other hand, to
further demonstrate visual quality of images for example Figure 5 presents restoration of Lena
image initially corrupted with 80% impulse noise density. For image processed with DBA, from
the subjective quality of the image one can observe that some of the impulse noises are not fully
suppressed while blurring and distortion are serious. AMF and CBA suppress much of the noise
where CBA fails to preserve edge information while maintaining details of the image unlike AMF
which suffers to maintain both. Both the performance of PSNR and the subjective visual qualities
of our method outperform other algorithms i.e. DBA, AMF and CBA in all cases. Specially as
noise density becomes high and images are greatly corrupted by the impulse noise, our scheme
shows remarkable result after images are being processed.
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
52
Figure 4.Image restoration results of Lena image. (a) 50% noise corrupted, (b) DBA, (c) AMF, (d) CBA,
(e) proposed
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
53
Figure 5. Image restoration results of the Lena image. (a) 80% noise corrupted, (b) DBA, (c) AMF, (d)
CBA, (e) proposed
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
54
4. CONCLUSION
In this paper, a new adaptive noise reduction scheme for removing salt and pepper noise is
proposed. The first phase of the scheme efficiently identifies impulse noise while the other is to
remove the noise from the corrupted image that is followed by image enhancement scheme to
preserve the details and image quality. As per the experimental results, the proposed algorithm
yields good filtering result using efficient noise detection mechanism. This is observed by
numerical measurements like PSNR and visual observations through the experiments conducted.
ACKNOWLEDGEMENTS
The support of the Agency for Defence Development Korea is gratefully acknowledged.
REFERENCES
[1] Sarinivasan, K.S., and Ebenezer, D., “A new fast and efficient decisioin based algorithm for removal
of high-density impulse noises,” IEEE signals process. Lett, pp. 189-192, 2007.
[2] Chan, R.H., Ho, C.W., and Nikolova, M, “Salt-and-pepper noise removal by median-type noise
detectors and detail-preserving regularization,” IEEE Trans. Image process., pp. 1479-1485, 2005.
[3] Wang, S.H., and Wu, C.H, “A new imples detection and filtering method for removal of wide range
impulse noises, ” Pattern Recognitioin., pp. 2194-2202, 2009.
[4] S. Zhang, M.A. Karim, “A new impulse detector for switching median filters,” IEEE Signal Process.
Lett., pp. 360–363, 2002.
[5] Chan, R.H., Chen Hu., and Nikolova, M.,”An Iterative procedure for removing random-valued
impulse noise ,” IEEE signal process. Lett, pp. 921-924, 2004.
[6] H. Farahanirad, J. Shanbehzadeh, M. M. Pedram, and A.Sarrafzadeh, “ A Hybrid edge detection
algorithm for salt-and-pepper noise,” proceedings of the IMECS, 2011.
[7] I. Pitas, A.N. Venetsanopoulos, “Order statistics in digital image processing,” Proc. IEEE., pp. 1893–
1921, 1992.
[8] Geoffrine Judith.M.C, and N.Kumarasabapathy.,“Study and analysis of impulse noise reduction
filters”, Signal & Image Processing : An International Journal(SIPIJ),Vol.2(1), pp.82-92,2011.
[9] S. Huang and J.Zhu., “Removal of salt-and-pepper noise based on compressed sensing”, IEEE
Electronic Letters, Vol.46(17), pp.1198-1199, 2010.
[10] Kenny K.V. Toh and Nor A.M. Isa.,”Noise adaptive fuzzy switching median filter for Salt-and-
Pepper noise reduction”, IEEE signal processing letters, Vol.17(3), pp.281-284, 2010
[11] Chen C. , Wng J., Quin W. and Dong X., “A new adaptive weight algorithm for Salt and Pepper noise
removal”, Consumer Electronics, Communication and Networks, pp.26-29, 2011.
Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011
55
Authors
Tina Gebreyohanes received her B.Sc. degree in 2007 in Computer Science from Addis
Ababa University, Ethiopia. She worked for a Telecom company called ZTE(H.K)
Ethiopian branch as Fixed Line Next Generation Network(FLNGN) Engineer. She is
currently M.Sc. student in Information and communication Technology Faculty,
Computer Engineering Department in Ajou University. Her research interest includes
image processing and data compression.
Dong-Yoon Kim received his B.Sc. degree in 1974 in Mathematics from Seoul National
University, M.S. degree in 1976 in Computer Science from Korea Advance Institute of
Science and Technology, and Ph.D., in 1985 in Applied Mathematics from
Massachusetts Institute of Technology. From 1976 to 1991, he was with Agency for
Defence Development Korea. In 1991 he joined Ajou University. He served as a
President of Korea Institute for Information Scientists and Engineers in 2006. Also he
was a Vice President of International Federation for Information Processing from 2004
to 2007. His research interests include image processing and data mining.

More Related Content

What's hot

Image restoration
Image restorationImage restoration
Image restoration
Azad Singh
 
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
Image Denoising of various images Using Wavelet Transform and Thresholding Te...Image Denoising of various images Using Wavelet Transform and Thresholding Te...
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
IRJET Journal
 
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
 
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
 
An Application of Second Generation Wavelets for Image Denoising using Dual T...
An Application of Second Generation Wavelets for Image Denoising using Dual T...An Application of Second Generation Wavelets for Image Denoising using Dual T...
An Application of Second Generation Wavelets for Image Denoising using Dual T...
IDES Editor
 
New microsoft power point presentation
New microsoft power point presentationNew microsoft power point presentation
New microsoft power point presentation
Azad Singh
 
J010245458
J010245458J010245458
J010245458
IOSR Journals
 
elsevier_publication_2013
elsevier_publication_2013elsevier_publication_2013
elsevier_publication_2013pranay yadav
 
Research on Noise Reduction and Enhancement Algorithm of Girth Weld Image
Research on Noise Reduction and Enhancement Algorithm of Girth Weld ImageResearch on Noise Reduction and Enhancement Algorithm of Girth Weld Image
Research on Noise Reduction and Enhancement Algorithm of Girth Weld Image
sipij
 
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGERESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
sipij
 
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
 
A fast and effective impulse noise filter
A fast and effective impulse noise filterA fast and effective impulse noise filter
A fast and effective impulse noise filter
IJRES Journal
 
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
IRJET Journal
 
Adaptive approach to retrieve image affected by impulse noise
Adaptive approach to retrieve image affected by impulse noiseAdaptive approach to retrieve image affected by impulse noise
Adaptive approach to retrieve image affected by impulse noise
eSAT Publishing House
 
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
sipij
 
A Comparative Study of Image Denoising Techniques for Medical Images
A Comparative Study of Image Denoising Techniques for Medical ImagesA Comparative Study of Image Denoising Techniques for Medical Images
A Comparative Study of Image Denoising Techniques for Medical Images
IRJET Journal
 
impulse noise filter
impulse noise filter impulse noise filter
impulse noise filter yousef_
 
Blurred image recognization system
Blurred image recognization systemBlurred image recognization system
Blurred image recognization system
Rajeswari senthamil selvam
 

What's hot (20)

Image restoration
Image restorationImage restoration
Image restoration
 
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
Image Denoising of various images Using Wavelet Transform and Thresholding Te...Image Denoising of various images Using Wavelet Transform and Thresholding Te...
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
 
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...
 
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
 
An Application of Second Generation Wavelets for Image Denoising using Dual T...
An Application of Second Generation Wavelets for Image Denoising using Dual T...An Application of Second Generation Wavelets for Image Denoising using Dual T...
An Application of Second Generation Wavelets for Image Denoising using Dual T...
 
New microsoft power point presentation
New microsoft power point presentationNew microsoft power point presentation
New microsoft power point presentation
 
PID3474431
PID3474431PID3474431
PID3474431
 
J010245458
J010245458J010245458
J010245458
 
elsevier_publication_2013
elsevier_publication_2013elsevier_publication_2013
elsevier_publication_2013
 
final_project
final_projectfinal_project
final_project
 
Research on Noise Reduction and Enhancement Algorithm of Girth Weld Image
Research on Noise Reduction and Enhancement Algorithm of Girth Weld ImageResearch on Noise Reduction and Enhancement Algorithm of Girth Weld Image
Research on Noise Reduction and Enhancement Algorithm of Girth Weld Image
 
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGERESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
RESEARCH ON NOISE REDUCTION AND ENHANCEMENT ALGORITHM OF GIRTH WELD IMAGE
 
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)
 
A fast and effective impulse noise filter
A fast and effective impulse noise filterA fast and effective impulse noise filter
A fast and effective impulse noise filter
 
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
Strengthen Fuzzy Pronouncement for Impulse Noise Riddance Method for Images B...
 
Adaptive approach to retrieve image affected by impulse noise
Adaptive approach to retrieve image affected by impulse noiseAdaptive approach to retrieve image affected by impulse noise
Adaptive approach to retrieve image affected by impulse noise
 
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
A NOVEL ALGORITHM FOR IMAGE DENOISING USING DT-CWT
 
A Comparative Study of Image Denoising Techniques for Medical Images
A Comparative Study of Image Denoising Techniques for Medical ImagesA Comparative Study of Image Denoising Techniques for Medical Images
A Comparative Study of Image Denoising Techniques for Medical Images
 
impulse noise filter
impulse noise filter impulse noise filter
impulse noise filter
 
Blurred image recognization system
Blurred image recognization systemBlurred image recognization system
Blurred image recognization system
 

Similar to Adaptive Noise Reduction Scheme for Salt and Pepper

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
CSCJournals
 
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
 
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 Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
iosrjce
 
A017230107
A017230107A017230107
A017230107
IOSR Journals
 
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
ijait
 
V2 i2087
V2 i2087V2 i2087
V2 i2087Rucku
 
noise remove in image processing by fuzzy logic
noise remove in image processing by fuzzy logicnoise remove in image processing by fuzzy logic
noise remove in image processing by fuzzy logicRucku
 
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
An Efficient Image Denoising Approach for the Recovery of Impulse NoiseAn Efficient Image Denoising Approach for the Recovery of Impulse Noise
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
journalBEEI
 
Cz4301586590
Cz4301586590Cz4301586590
Cz4301586590
IJERA Editor
 
Filter for Removal of Impulse Noise By Using Fuzzy Logic
Filter for Removal of Impulse Noise By Using Fuzzy LogicFilter for Removal of Impulse Noise By Using Fuzzy Logic
Filter for Removal of Impulse Noise By Using Fuzzy Logic
CSCJournals
 
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
Editor IJCATR
 
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
muhammed jassim k
 
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
 
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
 
23 an investigation on image 233 241
23 an investigation on image 233 24123 an investigation on image 233 241
23 an investigation on image 233 241
Alexander Decker
 
[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
 
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
CSCJournals
 

Similar to Adaptive Noise Reduction Scheme for Salt and Pepper (20)

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
 
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...
 
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 Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
The Performance Analysis of Median Filter for Suppressing Impulse Noise from ...
 
A017230107
A017230107A017230107
A017230107
 
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE ...
 
V2 i2087
V2 i2087V2 i2087
V2 i2087
 
noise remove in image processing by fuzzy logic
noise remove in image processing by fuzzy logicnoise remove in image processing by fuzzy logic
noise remove in image processing by fuzzy logic
 
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
An Efficient Image Denoising Approach for the Recovery of Impulse NoiseAn Efficient Image Denoising Approach for the Recovery of Impulse Noise
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
 
Cz4301586590
Cz4301586590Cz4301586590
Cz4301586590
 
Filter for Removal of Impulse Noise By Using Fuzzy Logic
Filter for Removal of Impulse Noise By Using Fuzzy LogicFilter for Removal of Impulse Noise By Using Fuzzy Logic
Filter for Removal of Impulse Noise By Using Fuzzy Logic
 
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
 
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
Adapter Wavelet Thresholding for Image Denoising Using Various Shrinkage Unde...
 
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 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
 
23 an investigation on image 233 241
23 an investigation on image 233 24123 an investigation on image 233 241
23 an investigation on image 233 241
 
[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh
 
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
Filtering Corrupted Image and Edge Detection in Restored Grayscale Image Usin...
 

Recently uploaded

road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 

Recently uploaded (20)

road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 

Adaptive Noise Reduction Scheme for Salt and Pepper

  • 1. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 DOI : 10.5121/sipij.2011.2405 47 ADAPTIVE NOISE REDUCTION SCHEME FOR SALT AND PEPPER Tina Gebreyohannes1 and Dong-Yoon Kim2 1 Department of Computer Engineering, Ajou University, Suwon, South Korea tinosaturn@gmail.com 2 Departent of Computer Engineering, Ajou University, Suwon, South Korea dykim@ajou.ac.kr ABSTRACT In this paper, a new adaptive noise reduction scheme for images corrupted by impulse noise is presented. The proposed scheme efficiently identifies and reduces salt and pepper noise. MAG (Mean Absolute Gradient) is used to identify pixels which are most likely corrupted by salt and pepper noise that are candidates for further median based noise reduction processing. Directional filtering is then applied after noise reduction to achieve a good tradeoff between detail preservation and noise removal. The proposed scheme can remove salt and pepper noise with noise density as high as 90% and produce better result in terms of qualitative and quantitative measures of images. KEYWORDS MAG, Directional filtering, Noise detection, Noise reduction 1. INTRODUCTION The two most common types of noise in image processing are Gaussian noise and Impulse noise, also known as salt and pepper noise. This type of noise may appear in digital image due contaminated impulse noise, which is caused by malfunctioning pixels in camera sensors, faulty memory location in hardware, or transmission in noisy channel [9]. Salt and pepper noise scattered throughout the image in such a way pixels can take only the maximum and minimum values (0 and 255 respectively) in the dynamic range. Many researches have been conducted and numerous algorithms were proposed to remove salt and pepper noise. Among these noise reduction techniques, majority splits the noise removal procedures into preliminarily detection of pixels corrupted by impulse noise followed by filtering the noise detected on the previous phase [8]. Standard median filter (SMF) [7] was one of famous among others due to its great denoising performance and computational efficiency. But since the conventional median filter applies the median operation to each pixel whether it is corrupted or not, it suffers from preserving some details of the image as the noise density increases. More improved algorithms such as adaptive median filter (AMF) [2], decision-based algorithm (DBA) [1] and convolution-based algorithm (CBA) [3] mainly focus on noise detector. Pixels detected by the noise detector will be considered as noise and shall further be processed in their respective noise reduction scheme. Having such mechanism with phases would highly preserve the details of the image and save the restored image from having blurred and distorted feature.
  • 2. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 48 The proposed algorithm in this paper also greatly focuses on how to effectively detect the salt and pepper noise and efficiently restore the image. The mechanism adopted by the proposed scheme consists of three phases. The first phase determines whether a pixel is noise or not based on some predefined threshold and calculated values. Once pixels are detected as noise in previous phase, their new value will be estimated and set in noise reduction phase. Finally a conditional image enhancement phase will be conducted for those images which have been corrupted with high density noise to preserve edges and details of the restored image. This makes the proposed algorithm to have an outstanding performance even at noise density as high as 90%. The rest of this paper is organized as follows. Section 2 describes the proposed scheme. Section 3 presents the experimental results. And the last section, Section 4 concludes this paper. 2. PROPOSED SCHEME In this paper, three steps adaptive noise reduction scheme is proposed for salt and pepper noise. For (i,j) X = {1,…..,N} x {1,…..,N}, let xij be the gray level of the original image X. The observed grey level at pixel location (i,j) is given by : (1) Where p is noise ratio contaminated in the image. 2.1. Noise detection scheme To classify corrupted and uncorrupted pixels Mean Absolute Gradient (MAG) will be applied. A small MAG indicates a flat region, and a large MAG usually indicates complex region or impulse noise region. MAG is defined as follows: (2) Where F(i) denotes the intensity value of pixel in a region, F(0) is the intensity of the pixel in the center as shown in Fig. 1 and N is the number of pixels in the region. Figure 1. 3x3 MAG window
  • 3. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 49 (3) A reasonable threshold T can be determined using computer simulation. If Zij= 1, then the pixel Xij is marked as noise candidate; otherwise the pixel Xij is noise free. 2.2. Noise Reduction Scheme For the noisy pixel detected, we use 3x3 window M as shown in eq. 4. (4) By sorting elements in M according to their distance from the center pixel, we get the sorted sequence as follow: i. Sort the five element { , , , , and } in ascending order, then we get { } where { }. Median = . ii. Sort the other four elements including Median from step (i) { } in ascending order, then we get { } where { }. Median = . Then the restored image y with yij is calculated as follow: (5) 2.3. Image Enhancement To preserve the details and edges of the restored image we apply directional filtering which will enhance the image quality. In order to do so, we apply standard deviation on the noisy image to determine whether directional filtering is needed to be applied or not. Standard deviation is defined as follows: (6)
  • 4. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 50 Where F(i) denotes the intensity values of the noisy image, N is the number of pixels in the image and µ is mean of the noisy image. If standard deviation is greater than the threshold T, then directional filter will be applied to the processed image accordingly. A pixel Xk in the image is partitioned into (Y1, Y2, Y3, Y4) where {X1, X2, X4} belongs to Y1, which are in the upper left portion of the mask. So that (7) Y2, Y3 and Y4 with {X2, X3, X6}, {X4, X7, X8} and {X6, X8, X9} respectively will also be calculated in the same manner. XK = Average (Y1, Y2, Y3, Y4) (8) Figure 2. Directional filtering window 3. EXPERIMENTAL RESULTS In this section, the experimental result of the proposed scheme is presented. A variety of simulations are carried out on 512x512 grey scale Lena image to verify the performances of various restoration methods, including AMF[2], DBA[1],CBA[3] and the proposed scheme. In the simulation, images are corrupted by “salt” (255) and “pepper” (0) noise with equal Xk X1 X2 X3 X4 X7 X8 X6 X9 y2 y3 y4 Xk y1
  • 5. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 51 probability. The noise density is varied from 10% to 90% with 10% incremental, and the restoration performance is quantitatively measured by peak signal-to-noise ratio (PSNR). Peak signal to noise ratio (PSNR) is defined as: (9) where 255 is the peak signal for 8 bit image and MSE is mean square error given by: (10) Where fij and fl ij are the pixel values at position (i,j) of original and processed image respectively. The PSNR comparison of various algorithms including DBA, AMF, CBA and the proposed scheme are presented in Figure 3 graphically. Figure 4 and Figure 5 show the subjective visual qualities of the filtered image using various algorithms for the image “Lena” corrupted by 50% and 80% impulse noise respectively. Figure 3.Comparison of various scheme in PSNR for Lena image with various ratio of salt and pepper noise When the noise density is greater than 50%, other algorithm’s PSNR drops sharply unlike the proposed algorithm which doesn’t show drastic change in PSNR values. On the other hand, to further demonstrate visual quality of images for example Figure 5 presents restoration of Lena image initially corrupted with 80% impulse noise density. For image processed with DBA, from the subjective quality of the image one can observe that some of the impulse noises are not fully suppressed while blurring and distortion are serious. AMF and CBA suppress much of the noise where CBA fails to preserve edge information while maintaining details of the image unlike AMF which suffers to maintain both. Both the performance of PSNR and the subjective visual qualities of our method outperform other algorithms i.e. DBA, AMF and CBA in all cases. Specially as noise density becomes high and images are greatly corrupted by the impulse noise, our scheme shows remarkable result after images are being processed.
  • 6. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 52 Figure 4.Image restoration results of Lena image. (a) 50% noise corrupted, (b) DBA, (c) AMF, (d) CBA, (e) proposed
  • 7. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 53 Figure 5. Image restoration results of the Lena image. (a) 80% noise corrupted, (b) DBA, (c) AMF, (d) CBA, (e) proposed
  • 8. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 54 4. CONCLUSION In this paper, a new adaptive noise reduction scheme for removing salt and pepper noise is proposed. The first phase of the scheme efficiently identifies impulse noise while the other is to remove the noise from the corrupted image that is followed by image enhancement scheme to preserve the details and image quality. As per the experimental results, the proposed algorithm yields good filtering result using efficient noise detection mechanism. This is observed by numerical measurements like PSNR and visual observations through the experiments conducted. ACKNOWLEDGEMENTS The support of the Agency for Defence Development Korea is gratefully acknowledged. REFERENCES [1] Sarinivasan, K.S., and Ebenezer, D., “A new fast and efficient decisioin based algorithm for removal of high-density impulse noises,” IEEE signals process. Lett, pp. 189-192, 2007. [2] Chan, R.H., Ho, C.W., and Nikolova, M, “Salt-and-pepper noise removal by median-type noise detectors and detail-preserving regularization,” IEEE Trans. Image process., pp. 1479-1485, 2005. [3] Wang, S.H., and Wu, C.H, “A new imples detection and filtering method for removal of wide range impulse noises, ” Pattern Recognitioin., pp. 2194-2202, 2009. [4] S. Zhang, M.A. Karim, “A new impulse detector for switching median filters,” IEEE Signal Process. Lett., pp. 360–363, 2002. [5] Chan, R.H., Chen Hu., and Nikolova, M.,”An Iterative procedure for removing random-valued impulse noise ,” IEEE signal process. Lett, pp. 921-924, 2004. [6] H. Farahanirad, J. Shanbehzadeh, M. M. Pedram, and A.Sarrafzadeh, “ A Hybrid edge detection algorithm for salt-and-pepper noise,” proceedings of the IMECS, 2011. [7] I. Pitas, A.N. Venetsanopoulos, “Order statistics in digital image processing,” Proc. IEEE., pp. 1893– 1921, 1992. [8] Geoffrine Judith.M.C, and N.Kumarasabapathy.,“Study and analysis of impulse noise reduction filters”, Signal & Image Processing : An International Journal(SIPIJ),Vol.2(1), pp.82-92,2011. [9] S. Huang and J.Zhu., “Removal of salt-and-pepper noise based on compressed sensing”, IEEE Electronic Letters, Vol.46(17), pp.1198-1199, 2010. [10] Kenny K.V. Toh and Nor A.M. Isa.,”Noise adaptive fuzzy switching median filter for Salt-and- Pepper noise reduction”, IEEE signal processing letters, Vol.17(3), pp.281-284, 2010 [11] Chen C. , Wng J., Quin W. and Dong X., “A new adaptive weight algorithm for Salt and Pepper noise removal”, Consumer Electronics, Communication and Networks, pp.26-29, 2011.
  • 9. Signal & Image Processing : An International Journal (SIPIJ) Vol.2, No.4, December 2011 55 Authors Tina Gebreyohanes received her B.Sc. degree in 2007 in Computer Science from Addis Ababa University, Ethiopia. She worked for a Telecom company called ZTE(H.K) Ethiopian branch as Fixed Line Next Generation Network(FLNGN) Engineer. She is currently M.Sc. student in Information and communication Technology Faculty, Computer Engineering Department in Ajou University. Her research interest includes image processing and data compression. Dong-Yoon Kim received his B.Sc. degree in 1974 in Mathematics from Seoul National University, M.S. degree in 1976 in Computer Science from Korea Advance Institute of Science and Technology, and Ph.D., in 1985 in Applied Mathematics from Massachusetts Institute of Technology. From 1976 to 1991, he was with Agency for Defence Development Korea. In 1991 he joined Ajou University. He served as a President of Korea Institute for Information Scientists and Engineers in 2006. Also he was a Vice President of International Federation for Information Processing from 2004 to 2007. His research interests include image processing and data mining.