SlideShare a Scribd company logo
1 of 9
Download to read offline
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
DOI : 10.5121/ijait.2011.1604 43
ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE
RESTORATION OF HIGH-DENSITY IMPULSE NOISE
CORRUPTED IMAGES
Shanmugavadivu P1
and Eliahim Jeevaraj P S2
Department of Computer Science and Applications,
Gandhigram Rural Institute – Deemed University,
Gandhigram – 624 302, Tamil Nadu, India
1
psvadivu@yahoo.com, 2
eliahimps@gmail.com
ABSTRACT
This proposed Adaptive PDE-based Median Filter (APM Filter) is devised to suppress the high-density
fixed-value impulse noise that degrades the quality of images. It is apparent from the quantitative measure
- the PSNR values and the qualitative measure - the human visual perception that the noise suppression
potential of APM filter is significantly higher. This filter broadly finds application in the areas, such as
image/video documentation, medical imaging and remote sensing.
KEYWORDS
Adaptive Median Filter, Fixed-Value impulse noise, Highly corrupted image, PDE-based Median filter,
Image restoration
1. INTRODUCTION
The grayscale digital image is an aggression of intensity values, represented in the form of two-
dimensional array. Normally, the digital images get corrupted by noise during acquisition and/or
transmission, due to the influencing parameters of these processes such as faulty sensors,
atmospheric turbulence [1], [2].
Noise is termed as any irrelevant data that obscures the authenticity of original data. Any noise-
prone image has to necessarily undergo restoration process in order to make it suitable for
subsequent higher order processing. Image restoration is an objective preprocessing technique
that aims to estimate the original intensities of the corrupted pixels based on the mathematical
model of noise, as noises are classified as impulse noise, gaussian noise, poisson noise, thermal
noise, speckle noise, exponential noise, uniform noise etc., based on their pattern of distribution
and characteristics [3]. This paper proposes an efficient adaptive non-linear filter to restore
images corrupted with high-density fixed-value impulse noise. It is evident from the literature
that, non-linear filters like median based filters outperform the linear filters like mean filters.
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
44
Besides this noise filtering ability, median filters tend to promise detail and edge preservation in
the restores images [4], [5].
The proposed filter, Adaptive PDE-based Median Filter (APM Filter) processes any given noise-
prone input image and produces a restored image as its output. The performance of APM filter is
measured as PSNR values and Human Visual Perception. Further, the PSNR values of APM
Filter are compared with its fourteen contemporary high-performing median based filters for
further analysis. It is found that PSNR values of APM filter are higher than those contemporary
filters for most of the noise probabilities and highly comparable for the remaining ones.
The fixed-value impulse noise model is described in section 2 and the mathematical background
of PDE is given in section 3. The principle of APM filter is detailed in section 4. The results and
discussion is presented in section 5 and the conclusions in section 6.
2. NOISE MODEL OF FIXED-VALUE IMPULSE NOISE
Impulse noise is categorized into fixed-value impulse noise and random-value impulse noise.
This APM filter is designed to restore the images corrupted with fixed-value impulse noise,
which assumes either minimum or maximum intensity value of the image and the percentage of
noise distribution is evenly divided by those two intensity values. Random value impulse noise
arbitrarily assumes any value between the minimum and maximum intensity value of the image
[6], [7].
The fixed-value impulse noise corrupted image, X΄i,j can be expressed as a composite component
of corrupted and uncorrupted pixels as:




=′
p)-(1yprobabilitwithU
pyprobabilitwith
ji,
,
,
ji
ji
N
X (1)
where Ni,j and Ui,j denotes the corrupted and original pixels [8].
3. PARTIAL DIFFERENTIAL EQUATIONS
In physics, if a network region (mesh) is partitioned into small grids, then the central point of
each grid is computed using Laplace Equation (Eqn.2) as[9]:
02
2
2
2
=
∂
∂
+
∂
∂
y
u
x
u
(2)
In the above equation, when the derivatives are replaced by their difference approximations
(Eqn.3), it is known as Diagonal 5-point formula which is pictorially represented in Figure 1 and
finds wider applications in image processing.
[ ]1j,1i1j,1i1j,1i1j,1ij,i MMMM
4
1
M ++−+−+−− +++= (3)
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
45
Mi-1,j-1 Mi-1,j+1
Mij
Mi+1,j-1 Mi+1,j+1
Figure 1. Neighborhood points of PDE
In APM filter for the purpose of denoising, the diagonal 5-point formula is modified in such a
way that the central pixel Mij is excluded and the median is computed using the remaining
neighbouring pixels [10]-[12].
4. APM FILTER
The proposed APM filter performs denoising in two stages namely noise detection and noise
correction.
4.1. Noise Detection
In a grayscale image of dynamic intensity range [0-255], fixed-value impulse noise corrupted
pixels assume either 0 or 255. The APM filter partitions the corrupted input image into subimages
of size n × n, checks if the central pixel is corrupted or not and every corrupted pixel is treated in
the noise correction phase.
4.2. Noise Correction
In each subimage, if the central pixel is corrupted, then its original intensity value is estimated
using the principle of neighbourhood processing. For this purpose, the neighbourhood pixels of
every subimage with a corrupted pixel at the central position (Mij) are classified into corrupted
pixels (CP) and uncorrupted pixels (UP). Then, the median of those neighbourhood uncorrupted
pixels is computed as UMED and are respectively replaced in the output image Y′. Further, the
median of diagonal pixels of W in Y′ is computed as DMED and is used to replace respective pixel
in the output image Y′. This process is uniformly repeated for the entire image.
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
46
4.3. Algorithm of APM Filter
Input: The corrupted image X′ and a copy of X′ as Y′
Output: The restored image Y′
Step 1: Read the corrupted image X′ and copy X′ into ′.
Step 2: Divide X′ and Y′ into subimages in the order of overlapping sliding window W
of size n × n.
Repeat steps 3 to 5, for each W:
Step 3: Check whether the central pixel Mij is corrupted or not
Step 4: If Mij is uncorrupted, goto Step 3.
Step 5: If Mij is corrupted,
i. Group the uncorrupted pixels of W as UP and the corrupted ones as Cp.
ii. Compute the median of UP pixels of W as UMED
UMED←Median (UP)
iii. Replace the corresponding CP pixels of W in Y′ by UMED.
iv. Compute the median of diagonal pixels of Y′ in W.
DMED ← Median [ Mi-1,j-1, Mi+1,j-1, Mi+1,j-1, Mi+1,j+1].
v. Mij←DMED
Step 6: Update the respective value of Mij in Y′.
Step 7: Stop
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
47
4.4. Flowchart of APM Filter
Figure 2. Flowchart of APM Filter
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
48
5. RESULTS AND DISCUSSION
The proposed filter is developed using MatLab 6.5. The standard images lena and mandrill are
chosen as the test images. The images are corrupted with noise probabilities of 10% - 90% and
the window size is chosen as 3×3. The performance of the proposed filter is measured in terms of
PSNR and human visual perception.
The performance of the APM filter is comparatively analyzed with a few median based filters like
Standard Median Filter (SM), Center Weighted Median Filter (CWM), Progressive Switching
Median Filter (PSM), Iterative Median Filter (IMF), Signal Dependent Rank Order Median Filter
(SDROM), Two-state Recursive Signal Dependent Rank Order Median Filter (SDROMR), Non-
Recursive Adaptive-Center Weighted Median Filter (ACWM), Recursive Adaptive-Center
Weighted Median Filter (ACWMR), Russo’s Fuzzy Filter (RUSSO), Zhang’s Filter (ZHANG),
Sun and Neuvo’s Switching Based Filter (SUN), Impulse Rejecting Filter (IRF) and Tri-State
Median Filter (TSM) and Modified PDE Adaptive Two-Stage Median Filter(MPATS) [13],[14].
The recorded PSNR values of lena and mandrill are furnished in Table I and Table II. It is
observed that except the noise probabilities of 10% and 20%, APM filter produces the highest
PSNR values though for these noises, the PSNR value of APM filter is highly comparable with
those of its contemporary filters.
It is further clear from Table II that APM filter has given the highest PSNR values than all of its
contemporary filters. Additionally, the visual perception of the restored images of lena and
mandrill for the noise probabilities of 50%, 60% and 70% depicted in Figure 4, substantiates the
denoising capability of APM filter.
Table I. Comparison of PSNR values for Lena image
Method Noise Density (%)
1 20 3 4 5 6 7 8 9
Corrupted 15.5 12.4 10.7 9.4 8.5 7.7 7.0 6.4 5.9
SM 28.7 26.4 22.6 18.3 15.0 12.2 9.8 8.1 6.5
CWM 29.7 24.1 19.5 15.7 13.0 10.8 8.9 7.6 6.3
PSM 30.7 28.7 26.9 23.7 20.0 15.2 11.1 8.3 6.4
IMF 27.2 26.7 26.1 25.1 23.9 21.2 16.6 12.1 8.0
SDROM 30.3 26.7 22.0 17.6 14.4 11.7 9.4 7.8 6.4
SDROMR 30.5 28.5 25.7 23.5 20.7 17.8 14.2 10.6 6.9
ACWM 30.9 27.2 22.4 18.1 14.8 12.1 9.7 8.1 6.5
ACWMR 31.4 28.8 25.8 23.3 20.8 18.1 15.0 11.8 8.1
RUSSO 31.0 27.6 24.9 22.7 20.3 17.6 14.7 11.7 8.6
ZHANG 32.8 28.2 23.3 18.6 15.3 12.5 10.0 8.3 6.7
SUN 31.0 27.5 23.0 18.4 15.0 12.2 9.8 8.1 6.5
IRF 30.2 27.0 22.5 18.2 14.9 12.2 9.7 8.1 6.5
TSM 30.3 24.4 19.6 15.5 12.7 10.4 8.4 7.1 6.0
MPATS 32.3 28.9 26.9 24.8 23.5 21.6 19.6 17.9 15.0
APM
(Proposed Filter)
31.6 29.0 27.1 25.3 24.0 22.7 21.3 19.8 17.4
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
49
Table II. Comparison of PSNR values for Mandrill image
Method
Noise Density
10 20 30 40 50 60 70 80 90
Corrupted 15.7 12.6 10.9 9.6 8.6 7.9 7.2 6.6 6.1
SM 23.8 23.0 20.7 17.7 14.7 12.3 10.9 8.3 6.8
CWM 25.5 22.7 18.9 15.6 12.9 10.9 9.1 7.7 6.6
PSM 27.8 26.4 25.0 22.9 19.5 15.3 11.0 8.9 6.5
IMF 23.0 22.8 22.6 22.3 21.5 20.0 16.0 12.0 8.3
SDROM 26.0 24.0 20.8 17.4 14.3 11.8 9.6 7.9 6.6
SDROMR 25.8 24.6 23.2 21.8 19.7 17.6 14.2 10.8 7.1
ACWM 27.1 24.8 21.4 17.9 14.8 12.3 9.9 8.2 6.8
ACWMR 27.5 25.7 23.9 22.3 20.2 18.2 15.4 12.4 8.8
RUSSO 29.5 26.7 24.3 22.4 20.2 17.7 15.0 11.9 8.9
ZHANG 28.8 26.1 22.1 18.5 15.2 12.7 10.2 8.4 6.9
SUN 26.1 24.4 21.3 18.0 14.8 12.3 9.9 8.2 6.7
IRF 25.8 24.1 21.2 17.8 14.7 12.3 9.9 8.2 6.8
TSM 25.4 22.9 18.9 15.4 12.6 10.5 8.6 7.2 6.2
MPATS 29.6 27.0 24.8 23.8 22.4 21.1 19.9 18.2 17.1
APM
(Proposed Filter) 29.6 26.9 24.8 24.0 22.6 21.7 20.7 19.5 18.0
Figure 3. (a) Original image of Lena (b) Lena image with 50% noise; (c) Filtered Image of (b); (d) Lena
image with 60% noise; (e) Filtered Image of (d); (f) Lena Image with 70% noise; (g) Filtered
Image of (f); (h) Original Image of Mandrill (i) Mandrill Image with 50% noise; (j) Filtered
Image of (i); (k) Mandrill Image with 60% noise; (l) Filtered Image of (k); (m) Mandrill Image
with 70% noise; (n) Filtered Image of (m);
(a) (b) (c) (d) (e)
(f) (g) (h) (i) (j)
(k) (l) (m) (n)
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
50
6. CONCLUSION
The APM filter promises a high degree of restoration of digital images, degraded by fixed-value
impulse noise of density up to 90%. Hence, it is found to be very effective in denoising the highly
corrupted images. Further, the proposed filter also ensures better preservation of the details and
edges of the input images, which is confirmed quantitatively in terms of PSNR values and
qualitatively as visual perception.
ACKNOWLEDGEMENT
Authors wish to place on record the financial assistance received in the form of a Major Research
Project from UGC, New Delhi, India and the authorities of the Gandhigram Rural Institute –
Deemed University for their support and encouragement.
REFERENCES
1. Gonzalez. R.C, Woods R.E, Digital Image Processing, Third Edition, Pearson Prentice Hall, India,
2009.
2. Somasundaram K and Shanmugavadivu P, Adaptive Iterative Order Statistics Filters, Journal of
ICGST – GVIP, Vol. 09, pp.23-32, 2009.
3. Behrooz Ghandeharian, Hadi Sadoghi Yazdi and Faranak Homayouni, Modified Adaptive Center
Weighted Median Filter for Suppressing Impulsive Noise in Images, International Journal of
Research and Reviews in Applied Sciences, Vol. 01, No. 03, 2009.
4. Satpathy S.K, Panda S, Nagwanshi K.K and Ardill C, Image Restoration in Non-Linear Domain
using MDB approach, IJICE, Vol. 06, No. 01, 2010.
5. Somasundaram K and Shanmugavadivu P, Impulsive Noise Detection by Second Order Differential
Image and Noise Removal using Nearest Nieghbourhood Filter, International Journal of Electronics
and Communications, pp.472-477, 2007.
6. Md. Mansoor Roomi S, Lakshmi IM and Abhai Kumar V, A Recursive Gaussian Weighted Filter
for Impulse Noise Removal, Journal of ICGST – GVIP, Vol. 06, No. 03, pp.33-37, 2006.
7. Windya P.S, Fast Impulse Noise Removal, IEEE Trans. on Image Processing, Vol.10, No.01,
pp.173-179, 2001.
8. Shanmugavadivu P and Eliahim Jeevaraj P S, Selective 8-Neighbourhood based Medan Filter for
Images Corrupted with High Density Fixed-Value Impulse Noise, 3rd
IIST, 2011.
9. Grewal B.S, Higher Engineering Mathematics, Second Edition, Khanna Publishers, New Delhi,
pp.1129-1130, 2007.
10. Yu Li You, Kaveh M, Fourth order PDE for noise removal, IEEE Trans. on Image Processing,
Vol. 09, No.10, pp.1723-1730, 2000.
11. Shanmugavadivu P and Eliahim Jeevaraj P S, Fixed – Value Impulse Noise Suppression for Images
using PDE based Adaptive Two -Stage Median Filter, ICCCET-11 (IEEE Explore), pp.290-295,
2011.
12. Bertozzi A.L and Greer J.B, Travelling Wave Solutions of Fourth Order PDEs for Image
Processing, SIAM, Journal of Mathematical Analysis, Vol.36, No.01, pp.36-68, 2004.
13. Besdok E and Emin Yuskel M, Impulsive Noise Suppression for Images with Jarque – Bera Teat
based Median Filter, International Journal of Electronics and Communications, Vol. 59, pp.105-
110, 2005.
14. Shanmugavadivu P and Eliahim Jeevaraj P S, Modified Partial Differential Equations based
Adaptive Two-Stage Median Filter for Images Corrupted with High Density Fixed-Value Impulse
Noise, CCSEIT 2011,CCIS 204, Springer-Verlag, pp. 376 -383
International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011
51
Authors
P. Shanmugavadivu received Ph.D., in Image Restoration from the Department of
Computer Science and Applications, Gandhigram Rural Institute - Deemed University,
Gandhigram, India, in 2008 and is working as Associate Professor in the same
department. Her research areas are image restoration, image enhancement and image
segmentation.
Eliahim Jeevaraj P S is pursuing Ph.D., at Department of Computer Science and
Applications, Gandhigram Rural Institute – Deemed University, India. He completed his
MCA degree in Bishop Heber College, Tiruchirappalli. His research interests are image
restoration and image enhancement.

More Related Content

What's hot

Novel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital imagesNovel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital imagesijbbjournal
 
Paper id 28201452
Paper id 28201452Paper id 28201452
Paper id 28201452IJRAT
 
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filter
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median FilterAnalysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filter
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filterijtsrd
 
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
 
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...ijcsit
 
Literature survey on impulse noise reduction
Literature survey on impulse noise reductionLiterature survey on impulse noise reduction
Literature survey on impulse noise reductionsipij
 
Image denoising using new adaptive based median filter
Image denoising using new adaptive based median filterImage denoising using new adaptive based median filter
Image denoising using new adaptive based median filtersipij
 
Non-Blind Deblurring Using Partial Differential Equation Method
Non-Blind Deblurring Using Partial Differential Equation MethodNon-Blind Deblurring Using Partial Differential Equation Method
Non-Blind Deblurring Using Partial Differential Equation MethodEditor IJCATR
 
Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...researchinventy
 
Optimum Image Filters for Various Types of Noise
Optimum Image Filters for Various Types of NoiseOptimum Image Filters for Various Types of Noise
Optimum Image Filters for Various Types of NoiseTELKOMNIKA JOURNAL
 
Survey on Noise Removal in Digital Images
Survey on Noise Removal in Digital ImagesSurvey on Noise Removal in Digital Images
Survey on Noise Removal in Digital ImagesIOSR Journals
 
A Novel Approach For De-Noising CT Images
A Novel Approach For De-Noising CT ImagesA Novel Approach For De-Noising CT Images
A Novel Approach For De-Noising CT Imagesidescitation
 
Comparison on average, median and wiener filter using lung images
Comparison on average, median and wiener filter using lung imagesComparison on average, median and wiener filter using lung images
Comparison on average, median and wiener filter using lung imagesIRJET Journal
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imageseSAT Publishing House
 
Adaptive Noise Reduction Scheme for Salt and Pepper
Adaptive Noise Reduction Scheme for Salt and PepperAdaptive Noise Reduction Scheme for Salt and Pepper
Adaptive Noise Reduction Scheme for Salt and Peppersipij
 
saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013pranay yadav
 

What's hot (19)

Novel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital imagesNovel adaptive filter (naf) for impulse noise suppression from digital images
Novel adaptive filter (naf) for impulse noise suppression from digital images
 
388 394
388 394388 394
388 394
 
Paper id 28201452
Paper id 28201452Paper id 28201452
Paper id 28201452
 
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filter
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median FilterAnalysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filter
Analysis PSNR of High Density Salt and Pepper Impulse Noise Using Median Filter
 
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
 
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...
THE EFFECT OF IMPLEMENTING OF NONLINEAR FILTERS FOR ENHANCING MEDICAL IMAGES ...
 
Literature survey on impulse noise reduction
Literature survey on impulse noise reductionLiterature survey on impulse noise reduction
Literature survey on impulse noise reduction
 
Image denoising using new adaptive based median filter
Image denoising using new adaptive based median filterImage denoising using new adaptive based median filter
Image denoising using new adaptive based median filter
 
Non-Blind Deblurring Using Partial Differential Equation Method
Non-Blind Deblurring Using Partial Differential Equation MethodNon-Blind Deblurring Using Partial Differential Equation Method
Non-Blind Deblurring Using Partial Differential Equation Method
 
call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...
 
I010324954
I010324954I010324954
I010324954
 
Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...
 
Optimum Image Filters for Various Types of Noise
Optimum Image Filters for Various Types of NoiseOptimum Image Filters for Various Types of Noise
Optimum Image Filters for Various Types of Noise
 
Survey on Noise Removal in Digital Images
Survey on Noise Removal in Digital ImagesSurvey on Noise Removal in Digital Images
Survey on Noise Removal in Digital Images
 
A Novel Approach For De-Noising CT Images
A Novel Approach For De-Noising CT ImagesA Novel Approach For De-Noising CT Images
A Novel Approach For De-Noising CT Images
 
Comparison on average, median and wiener filter using lung images
Comparison on average, median and wiener filter using lung imagesComparison on average, median and wiener filter using lung images
Comparison on average, median and wiener filter using lung images
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
 
Adaptive Noise Reduction Scheme for Salt and Pepper
Adaptive Noise Reduction Scheme for Salt and PepperAdaptive Noise Reduction Scheme for Salt and Pepper
Adaptive Noise Reduction Scheme for Salt and Pepper
 
saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013saltandpepper_noise_removal_2013
saltandpepper_noise_removal_2013
 

Similar to ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE NOISE CORRUPTED IMAGES

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
 
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
 
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
 
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital Images
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital ImagesIRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital Images
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital ImagesIRJET Journal
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imageseSAT Publishing House
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
Mr image compression based on selection of mother wavelet and lifting based w...
Mr image compression based on selection of mother wavelet and lifting based w...Mr image compression based on selection of mother wavelet and lifting based w...
Mr image compression based on selection of mother wavelet and lifting based w...ijma
 
IMAGE DENOISING USING HYBRID FILTER
IMAGE DENOISING USING HYBRID FILTERIMAGE DENOISING USING HYBRID FILTER
IMAGE DENOISING USING HYBRID FILTERPushparaj Pal
 
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
 
Speckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filterSpeckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filtereSAT Publishing House
 
Satellite image compression algorithm based on the fft
Satellite image compression algorithm based on the fftSatellite image compression algorithm based on the fft
Satellite image compression algorithm based on the fftijma
 
Satellite Image Compression Algorithm Based on the FFT
Satellite Image Compression Algorithm Based on the FFTSatellite Image Compression Algorithm Based on the FFT
Satellite Image Compression Algorithm Based on the FFTijma
 
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...ijma
 
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
 
An adaptive threshold segmentation for detection of nuclei in cervical cells ...
An adaptive threshold segmentation for detection of nuclei in cervical cells ...An adaptive threshold segmentation for detection of nuclei in cervical cells ...
An adaptive threshold segmentation for detection of nuclei in cervical cells ...csandit
 
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...cscpconf
 
Adaptive denoising technique for colour images
Adaptive denoising technique for colour imagesAdaptive denoising technique for colour images
Adaptive denoising technique for colour imageseSAT Journals
 

Similar to ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE NOISE CORRUPTED IMAGES (20)

A017230107
A017230107A017230107
A017230107
 
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 ...
 
[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh
 
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...
 
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...
 
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital Images
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital ImagesIRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital Images
IRJET- SEPD Technique for Removal of Salt and Pepper Noise in Digital Images
 
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri imagesPerformance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
 
[IJET-V1I5P4] Authors :Murugan, Avudaiappan, Balasubramanian
[IJET-V1I5P4] Authors :Murugan, Avudaiappan, Balasubramanian [IJET-V1I5P4] Authors :Murugan, Avudaiappan, Balasubramanian
[IJET-V1I5P4] Authors :Murugan, Avudaiappan, Balasubramanian
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Mr image compression based on selection of mother wavelet and lifting based w...
Mr image compression based on selection of mother wavelet and lifting based w...Mr image compression based on selection of mother wavelet and lifting based w...
Mr image compression based on selection of mother wavelet and lifting based w...
 
IMAGE DENOISING USING HYBRID FILTER
IMAGE DENOISING USING HYBRID FILTERIMAGE DENOISING USING HYBRID FILTER
IMAGE DENOISING USING HYBRID FILTER
 
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,...
 
Speckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filterSpeckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filter
 
Satellite image compression algorithm based on the fft
Satellite image compression algorithm based on the fftSatellite image compression algorithm based on the fft
Satellite image compression algorithm based on the fft
 
Satellite Image Compression Algorithm Based on the FFT
Satellite Image Compression Algorithm Based on the FFTSatellite Image Compression Algorithm Based on the FFT
Satellite Image Compression Algorithm Based on the FFT
 
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...
MR Image Compression Based on Selection of Mother Wavelet and Lifting Based W...
 
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
 
An adaptive threshold segmentation for detection of nuclei in cervical cells ...
An adaptive threshold segmentation for detection of nuclei in cervical cells ...An adaptive threshold segmentation for detection of nuclei in cervical cells ...
An adaptive threshold segmentation for detection of nuclei in cervical cells ...
 
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
 
Adaptive denoising technique for colour images
Adaptive denoising technique for colour imagesAdaptive denoising technique for colour images
Adaptive denoising technique for colour images
 

Recently uploaded

Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
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
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 

Recently uploaded (20)

Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
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...
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 

ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE NOISE CORRUPTED IMAGES

  • 1. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 DOI : 10.5121/ijait.2011.1604 43 ADAPTIVE PDE-BASED MEDIAN FILTER FOR THE RESTORATION OF HIGH-DENSITY IMPULSE NOISE CORRUPTED IMAGES Shanmugavadivu P1 and Eliahim Jeevaraj P S2 Department of Computer Science and Applications, Gandhigram Rural Institute – Deemed University, Gandhigram – 624 302, Tamil Nadu, India 1 psvadivu@yahoo.com, 2 eliahimps@gmail.com ABSTRACT This proposed Adaptive PDE-based Median Filter (APM Filter) is devised to suppress the high-density fixed-value impulse noise that degrades the quality of images. It is apparent from the quantitative measure - the PSNR values and the qualitative measure - the human visual perception that the noise suppression potential of APM filter is significantly higher. This filter broadly finds application in the areas, such as image/video documentation, medical imaging and remote sensing. KEYWORDS Adaptive Median Filter, Fixed-Value impulse noise, Highly corrupted image, PDE-based Median filter, Image restoration 1. INTRODUCTION The grayscale digital image is an aggression of intensity values, represented in the form of two- dimensional array. Normally, the digital images get corrupted by noise during acquisition and/or transmission, due to the influencing parameters of these processes such as faulty sensors, atmospheric turbulence [1], [2]. Noise is termed as any irrelevant data that obscures the authenticity of original data. Any noise- prone image has to necessarily undergo restoration process in order to make it suitable for subsequent higher order processing. Image restoration is an objective preprocessing technique that aims to estimate the original intensities of the corrupted pixels based on the mathematical model of noise, as noises are classified as impulse noise, gaussian noise, poisson noise, thermal noise, speckle noise, exponential noise, uniform noise etc., based on their pattern of distribution and characteristics [3]. This paper proposes an efficient adaptive non-linear filter to restore images corrupted with high-density fixed-value impulse noise. It is evident from the literature that, non-linear filters like median based filters outperform the linear filters like mean filters.
  • 2. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 44 Besides this noise filtering ability, median filters tend to promise detail and edge preservation in the restores images [4], [5]. The proposed filter, Adaptive PDE-based Median Filter (APM Filter) processes any given noise- prone input image and produces a restored image as its output. The performance of APM filter is measured as PSNR values and Human Visual Perception. Further, the PSNR values of APM Filter are compared with its fourteen contemporary high-performing median based filters for further analysis. It is found that PSNR values of APM filter are higher than those contemporary filters for most of the noise probabilities and highly comparable for the remaining ones. The fixed-value impulse noise model is described in section 2 and the mathematical background of PDE is given in section 3. The principle of APM filter is detailed in section 4. The results and discussion is presented in section 5 and the conclusions in section 6. 2. NOISE MODEL OF FIXED-VALUE IMPULSE NOISE Impulse noise is categorized into fixed-value impulse noise and random-value impulse noise. This APM filter is designed to restore the images corrupted with fixed-value impulse noise, which assumes either minimum or maximum intensity value of the image and the percentage of noise distribution is evenly divided by those two intensity values. Random value impulse noise arbitrarily assumes any value between the minimum and maximum intensity value of the image [6], [7]. The fixed-value impulse noise corrupted image, X΄i,j can be expressed as a composite component of corrupted and uncorrupted pixels as:     =′ p)-(1yprobabilitwithU pyprobabilitwith ji, , , ji ji N X (1) where Ni,j and Ui,j denotes the corrupted and original pixels [8]. 3. PARTIAL DIFFERENTIAL EQUATIONS In physics, if a network region (mesh) is partitioned into small grids, then the central point of each grid is computed using Laplace Equation (Eqn.2) as[9]: 02 2 2 2 = ∂ ∂ + ∂ ∂ y u x u (2) In the above equation, when the derivatives are replaced by their difference approximations (Eqn.3), it is known as Diagonal 5-point formula which is pictorially represented in Figure 1 and finds wider applications in image processing. [ ]1j,1i1j,1i1j,1i1j,1ij,i MMMM 4 1 M ++−+−+−− +++= (3)
  • 3. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 45 Mi-1,j-1 Mi-1,j+1 Mij Mi+1,j-1 Mi+1,j+1 Figure 1. Neighborhood points of PDE In APM filter for the purpose of denoising, the diagonal 5-point formula is modified in such a way that the central pixel Mij is excluded and the median is computed using the remaining neighbouring pixels [10]-[12]. 4. APM FILTER The proposed APM filter performs denoising in two stages namely noise detection and noise correction. 4.1. Noise Detection In a grayscale image of dynamic intensity range [0-255], fixed-value impulse noise corrupted pixels assume either 0 or 255. The APM filter partitions the corrupted input image into subimages of size n × n, checks if the central pixel is corrupted or not and every corrupted pixel is treated in the noise correction phase. 4.2. Noise Correction In each subimage, if the central pixel is corrupted, then its original intensity value is estimated using the principle of neighbourhood processing. For this purpose, the neighbourhood pixels of every subimage with a corrupted pixel at the central position (Mij) are classified into corrupted pixels (CP) and uncorrupted pixels (UP). Then, the median of those neighbourhood uncorrupted pixels is computed as UMED and are respectively replaced in the output image Y′. Further, the median of diagonal pixels of W in Y′ is computed as DMED and is used to replace respective pixel in the output image Y′. This process is uniformly repeated for the entire image.
  • 4. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 46 4.3. Algorithm of APM Filter Input: The corrupted image X′ and a copy of X′ as Y′ Output: The restored image Y′ Step 1: Read the corrupted image X′ and copy X′ into ′. Step 2: Divide X′ and Y′ into subimages in the order of overlapping sliding window W of size n × n. Repeat steps 3 to 5, for each W: Step 3: Check whether the central pixel Mij is corrupted or not Step 4: If Mij is uncorrupted, goto Step 3. Step 5: If Mij is corrupted, i. Group the uncorrupted pixels of W as UP and the corrupted ones as Cp. ii. Compute the median of UP pixels of W as UMED UMED←Median (UP) iii. Replace the corresponding CP pixels of W in Y′ by UMED. iv. Compute the median of diagonal pixels of Y′ in W. DMED ← Median [ Mi-1,j-1, Mi+1,j-1, Mi+1,j-1, Mi+1,j+1]. v. Mij←DMED Step 6: Update the respective value of Mij in Y′. Step 7: Stop
  • 5. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 47 4.4. Flowchart of APM Filter Figure 2. Flowchart of APM Filter
  • 6. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 48 5. RESULTS AND DISCUSSION The proposed filter is developed using MatLab 6.5. The standard images lena and mandrill are chosen as the test images. The images are corrupted with noise probabilities of 10% - 90% and the window size is chosen as 3×3. The performance of the proposed filter is measured in terms of PSNR and human visual perception. The performance of the APM filter is comparatively analyzed with a few median based filters like Standard Median Filter (SM), Center Weighted Median Filter (CWM), Progressive Switching Median Filter (PSM), Iterative Median Filter (IMF), Signal Dependent Rank Order Median Filter (SDROM), Two-state Recursive Signal Dependent Rank Order Median Filter (SDROMR), Non- Recursive Adaptive-Center Weighted Median Filter (ACWM), Recursive Adaptive-Center Weighted Median Filter (ACWMR), Russo’s Fuzzy Filter (RUSSO), Zhang’s Filter (ZHANG), Sun and Neuvo’s Switching Based Filter (SUN), Impulse Rejecting Filter (IRF) and Tri-State Median Filter (TSM) and Modified PDE Adaptive Two-Stage Median Filter(MPATS) [13],[14]. The recorded PSNR values of lena and mandrill are furnished in Table I and Table II. It is observed that except the noise probabilities of 10% and 20%, APM filter produces the highest PSNR values though for these noises, the PSNR value of APM filter is highly comparable with those of its contemporary filters. It is further clear from Table II that APM filter has given the highest PSNR values than all of its contemporary filters. Additionally, the visual perception of the restored images of lena and mandrill for the noise probabilities of 50%, 60% and 70% depicted in Figure 4, substantiates the denoising capability of APM filter. Table I. Comparison of PSNR values for Lena image Method Noise Density (%) 1 20 3 4 5 6 7 8 9 Corrupted 15.5 12.4 10.7 9.4 8.5 7.7 7.0 6.4 5.9 SM 28.7 26.4 22.6 18.3 15.0 12.2 9.8 8.1 6.5 CWM 29.7 24.1 19.5 15.7 13.0 10.8 8.9 7.6 6.3 PSM 30.7 28.7 26.9 23.7 20.0 15.2 11.1 8.3 6.4 IMF 27.2 26.7 26.1 25.1 23.9 21.2 16.6 12.1 8.0 SDROM 30.3 26.7 22.0 17.6 14.4 11.7 9.4 7.8 6.4 SDROMR 30.5 28.5 25.7 23.5 20.7 17.8 14.2 10.6 6.9 ACWM 30.9 27.2 22.4 18.1 14.8 12.1 9.7 8.1 6.5 ACWMR 31.4 28.8 25.8 23.3 20.8 18.1 15.0 11.8 8.1 RUSSO 31.0 27.6 24.9 22.7 20.3 17.6 14.7 11.7 8.6 ZHANG 32.8 28.2 23.3 18.6 15.3 12.5 10.0 8.3 6.7 SUN 31.0 27.5 23.0 18.4 15.0 12.2 9.8 8.1 6.5 IRF 30.2 27.0 22.5 18.2 14.9 12.2 9.7 8.1 6.5 TSM 30.3 24.4 19.6 15.5 12.7 10.4 8.4 7.1 6.0 MPATS 32.3 28.9 26.9 24.8 23.5 21.6 19.6 17.9 15.0 APM (Proposed Filter) 31.6 29.0 27.1 25.3 24.0 22.7 21.3 19.8 17.4
  • 7. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 49 Table II. Comparison of PSNR values for Mandrill image Method Noise Density 10 20 30 40 50 60 70 80 90 Corrupted 15.7 12.6 10.9 9.6 8.6 7.9 7.2 6.6 6.1 SM 23.8 23.0 20.7 17.7 14.7 12.3 10.9 8.3 6.8 CWM 25.5 22.7 18.9 15.6 12.9 10.9 9.1 7.7 6.6 PSM 27.8 26.4 25.0 22.9 19.5 15.3 11.0 8.9 6.5 IMF 23.0 22.8 22.6 22.3 21.5 20.0 16.0 12.0 8.3 SDROM 26.0 24.0 20.8 17.4 14.3 11.8 9.6 7.9 6.6 SDROMR 25.8 24.6 23.2 21.8 19.7 17.6 14.2 10.8 7.1 ACWM 27.1 24.8 21.4 17.9 14.8 12.3 9.9 8.2 6.8 ACWMR 27.5 25.7 23.9 22.3 20.2 18.2 15.4 12.4 8.8 RUSSO 29.5 26.7 24.3 22.4 20.2 17.7 15.0 11.9 8.9 ZHANG 28.8 26.1 22.1 18.5 15.2 12.7 10.2 8.4 6.9 SUN 26.1 24.4 21.3 18.0 14.8 12.3 9.9 8.2 6.7 IRF 25.8 24.1 21.2 17.8 14.7 12.3 9.9 8.2 6.8 TSM 25.4 22.9 18.9 15.4 12.6 10.5 8.6 7.2 6.2 MPATS 29.6 27.0 24.8 23.8 22.4 21.1 19.9 18.2 17.1 APM (Proposed Filter) 29.6 26.9 24.8 24.0 22.6 21.7 20.7 19.5 18.0 Figure 3. (a) Original image of Lena (b) Lena image with 50% noise; (c) Filtered Image of (b); (d) Lena image with 60% noise; (e) Filtered Image of (d); (f) Lena Image with 70% noise; (g) Filtered Image of (f); (h) Original Image of Mandrill (i) Mandrill Image with 50% noise; (j) Filtered Image of (i); (k) Mandrill Image with 60% noise; (l) Filtered Image of (k); (m) Mandrill Image with 70% noise; (n) Filtered Image of (m); (a) (b) (c) (d) (e) (f) (g) (h) (i) (j) (k) (l) (m) (n)
  • 8. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 50 6. CONCLUSION The APM filter promises a high degree of restoration of digital images, degraded by fixed-value impulse noise of density up to 90%. Hence, it is found to be very effective in denoising the highly corrupted images. Further, the proposed filter also ensures better preservation of the details and edges of the input images, which is confirmed quantitatively in terms of PSNR values and qualitatively as visual perception. ACKNOWLEDGEMENT Authors wish to place on record the financial assistance received in the form of a Major Research Project from UGC, New Delhi, India and the authorities of the Gandhigram Rural Institute – Deemed University for their support and encouragement. REFERENCES 1. Gonzalez. R.C, Woods R.E, Digital Image Processing, Third Edition, Pearson Prentice Hall, India, 2009. 2. Somasundaram K and Shanmugavadivu P, Adaptive Iterative Order Statistics Filters, Journal of ICGST – GVIP, Vol. 09, pp.23-32, 2009. 3. Behrooz Ghandeharian, Hadi Sadoghi Yazdi and Faranak Homayouni, Modified Adaptive Center Weighted Median Filter for Suppressing Impulsive Noise in Images, International Journal of Research and Reviews in Applied Sciences, Vol. 01, No. 03, 2009. 4. Satpathy S.K, Panda S, Nagwanshi K.K and Ardill C, Image Restoration in Non-Linear Domain using MDB approach, IJICE, Vol. 06, No. 01, 2010. 5. Somasundaram K and Shanmugavadivu P, Impulsive Noise Detection by Second Order Differential Image and Noise Removal using Nearest Nieghbourhood Filter, International Journal of Electronics and Communications, pp.472-477, 2007. 6. Md. Mansoor Roomi S, Lakshmi IM and Abhai Kumar V, A Recursive Gaussian Weighted Filter for Impulse Noise Removal, Journal of ICGST – GVIP, Vol. 06, No. 03, pp.33-37, 2006. 7. Windya P.S, Fast Impulse Noise Removal, IEEE Trans. on Image Processing, Vol.10, No.01, pp.173-179, 2001. 8. Shanmugavadivu P and Eliahim Jeevaraj P S, Selective 8-Neighbourhood based Medan Filter for Images Corrupted with High Density Fixed-Value Impulse Noise, 3rd IIST, 2011. 9. Grewal B.S, Higher Engineering Mathematics, Second Edition, Khanna Publishers, New Delhi, pp.1129-1130, 2007. 10. Yu Li You, Kaveh M, Fourth order PDE for noise removal, IEEE Trans. on Image Processing, Vol. 09, No.10, pp.1723-1730, 2000. 11. Shanmugavadivu P and Eliahim Jeevaraj P S, Fixed – Value Impulse Noise Suppression for Images using PDE based Adaptive Two -Stage Median Filter, ICCCET-11 (IEEE Explore), pp.290-295, 2011. 12. Bertozzi A.L and Greer J.B, Travelling Wave Solutions of Fourth Order PDEs for Image Processing, SIAM, Journal of Mathematical Analysis, Vol.36, No.01, pp.36-68, 2004. 13. Besdok E and Emin Yuskel M, Impulsive Noise Suppression for Images with Jarque – Bera Teat based Median Filter, International Journal of Electronics and Communications, Vol. 59, pp.105- 110, 2005. 14. Shanmugavadivu P and Eliahim Jeevaraj P S, Modified Partial Differential Equations based Adaptive Two-Stage Median Filter for Images Corrupted with High Density Fixed-Value Impulse Noise, CCSEIT 2011,CCIS 204, Springer-Verlag, pp. 376 -383
  • 9. International Journal of Advanced Information Technology (IJAIT) Vol. 1, No.6, December 2011 51 Authors P. Shanmugavadivu received Ph.D., in Image Restoration from the Department of Computer Science and Applications, Gandhigram Rural Institute - Deemed University, Gandhigram, India, in 2008 and is working as Associate Professor in the same department. Her research areas are image restoration, image enhancement and image segmentation. Eliahim Jeevaraj P S is pursuing Ph.D., at Department of Computer Science and Applications, Gandhigram Rural Institute – Deemed University, India. He completed his MCA degree in Bishop Heber College, Tiruchirappalli. His research interests are image restoration and image enhancement.