SlideShare a Scribd company logo
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 15, Issue 2 (Nov. - Dec. 2013), PP 81-85
www.iosrjournals.org
www.iosrjournals.org 81 | Page
Removal of Gaussian noise on the image edges using the Prewitt
operator and threshold function technical
H. A. Alshamarti
Department of Physics, College of Science,University of Kufa, Iraq
Abstract: Image edge detection algorithm is applied on images to remove Gaussian noise that is present in the
image during capturing or transmission using a method which combines Prewitt operator and threshold
function technique to do edge detection on the image. This method is better than a method which combines
Prewitt operator and mean filtering. In this paper, firstly use mean filtering to remove initially Gaussian noise,
then use Prewitt operator to do edge detection on the image, and finally applied a threshold function technique
with Prewitt operator.
Keywords: Gaussian noise, Prewitt operator, edge detection, threshold function
I. Introduction
The image edge contains some of the useful information in the image. It uses to measures the size of
objects in the image, isolate particular objects from their background, and recognize objects. There are a large
number of edge-finding algorithms in existence [1]. The image processing using computers has created suitable
images for people to observe, identify, recognize, and understand images. Edge detection is one of research keys
in image processing [2]. Edge detection is one of the fundamental operations in image processing and computer
vision. It is defined as the process of locating the boundaries of objects or textures showed on the image. The
positions of these boundaries are defined critical in the process of image enhancement, recognition, restoration,
and compression [3, 4].
II. Gaussian Noise And Mean Filter
The camera and scanner devices capture the image and these devices sometimes add extraneous noise
to the image. This noise should be removed from the image for other image processing operations to return
valuable results. Noise on the image is the result of errors in the image acquisition process that result in pixel
values that do not reflect the true intensities of real image. The presence of noise gives the image a grainy,
rough, mottled, and snowy appearance. The image noise magnitude can be varied from gradual specks to optical
and radio astronomical images that are completely noise. The various types of noises on the image are presented
as Gaussian, salt and pepper, speckle noises [5].
The probability density function (PDF) of Gaussian noise is equal to that of the normal distribution
(Gaussian distribution). It is used as additive white noise to give additive white Gaussian noise (AWGN), where
all the image pixels deviate from their original values following Gaussian curve for each image pixel with
intensity value fij (1 ≤ i ≤ m, 1 ≤ j ≤ n for an m * n image), the corresponding pixel of the noisy image gij is [6, 7]
gi,j= fi,j + ni,j (1)
where each noise value (n) is drawn from a zero-mean Gaussian distribution [8].
Mean filter is broadly used in reducing Gaussian noise and smoothing the images as shown equation (2)
[9]. Average filter or median filter is simple, instinctive, and easy to understand. It reduces the amount of
intensity variation between one pixel and the next. Each pixel value on the image is replaced with the average
value of its neighbors including that pixel [10]. The mean filter is a linear filter which uses a mask over pixel in
the signal. Each of the components of the pixels which fall under the mask are averaged to form a single. The
mean filter is
𝑚𝑒𝑎𝑛 filter ( 𝐼1 … … … … 𝐼 𝑁) =
1
𝑁
𝐼𝑖
𝑁
𝑖=1 (2)
where ( 𝐼1 … … … … 𝐼 𝑁) is the image pixel range [11].
III. Edge Detection Principle
The edge mostly exists between objects and background, objects and primitives. It contains rich
information, step property, shape, which is able to describe the target object. Edge detection operations are
Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function
www.iosrjournals.org 82 | Page
based on the idea that edge information on an image is found by looking at the relationship a pixel has with its
neighbors. If a pixel has gray level values similar to those around it, there is probably not an edge at that point.
However, if a pixel has neighbors with varying gray levels, it may represent an edge point. The edge is defined
by a discontinuity in gray-level values [1]. There are two types of edge detection. The first derivative-based
edge detection operator to detect image edges by computing the image gradient values such as Roberts, Sobel,
and Prewitt operators. The second derivative-based edge detection operator is such as LOG, Canny operators
[9].
3.1. Prewitt Operator
The Prewitt operator masks edges in both the horizontal and vertical directions and then combines this
information into a single metric. The masks are as follows
-1 -1 -1
0 0 0
1 1 1
-1 0 1
-1 0 1
-1 0 1
Row Mask (P1) Column Mask (P2)
These masks are convolved with the image. The edge magnitude and edge direction are defined by
Edge Magnitude = P1
2
+ P2
2 (3)
Edge Direction = tan−1 𝑃1
𝑃2
(4)
3.2. Threshold Function Technique
The Image threshold technique is a common task in computer vision and graphic applications. The goal
of image threshold technique is classify pixels as either “dark” or “light”. Adaptive of threshold is a form of
threshold that takes into account spatial variations in illumination [12]. Let N be natural numbers, (x, y) be the
spatial coordinates of a digitized image, and G (0, 1. . . I – 1) be positive integers. The brightness (gray level) of
a pixel with coordinates (x, y) is denoted as f (x, y). Consider a original image in which g(x, y)  [0, 255] be the
intensity of a pixel at location (x, y). A threshold t(x, y) for each pixel is computed by
0 if g(x, y) ≤ t(x, y)
𝐼(𝑥, 𝑦) =
f(x,y) if g(x, y) ≥ t(x, y)
IV. Method And Algorithms
Method and algorithms are:
a. Conversion of image to gray level.
b. Gaussian noise addition for the image (= 0.005:0.005:0.05).
c. Application of mean filter on the image.
d. Using Prewitt operator (input image).
e. Using the threshold function technique (output image).
V. Analysis And Experimental Results
Figure1 shows original image used in this study. Gaussian noise is added to the image (Figure 2).
Figure 3 shows application of the mean filter to remove the primary noisy images. Figure 4 shows using the
Prewitt operator of edge detection.
Figure 1. Original image
Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function
www.iosrjournals.org 83 | Page
(1) (2) (3) (4) (5)
=0.005 =0.01 =0.015 =0.02 =0.025
(6) (7) (8) (9) (10)
=0.03 =0.035 =0.04 =0.045 =0.05
Figure 2. Gaussian noise with mean = 0
(1) (2) (3) (4) (5)
(6) (7) (8) (9) (10)
Figure 3. Mean filter, window (3*3)
(1) (2) (3) (4) (5)
Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function
www.iosrjournals.org 84 | Page
(6) (7) (8) (9) (10)
Figure 4. Mean filter and Prewitt operator, window (3*3) for (Figure 3)
The methods which combine mean de-noising and Prewitt operator are commonly used to find the
edge. However, these methods cannot remove Gaussian noise very well. This paper proposes Prewitt operator of
edge detection based on threshold function technique. It can be removed the noise effectively and can detect the
edge detail very well. The results are showed in Figure 5.
(1) (2) (3) (4) (5)
(6) (7) (8) (9) (10)
Figure 5. Prewitt operator based on threshold function technique (threshold value = 160)
VI. Conclusions
Prewitt operator methods with mean filter failed to perform adequately to remove Gaussian noise that have
different amount (0.005:0.005:0.05). In this work, the Prewitt operator with threshold technique (threshold value
=160) is used very well for Gaussian noise removal on image.
VII. Acknowledgments
The author is grateful to Dr. Basim A. Almayahi, Department of Environment, College of Science,
University of Kufa for assisting me throughout conducting the present research. Financial support was provided
by the College of Science, University of Kufa.
Reference
[1] R. Gonzalez, R. E. Woods. Digital Image Processing. Addison-Wesley, 2nd
Ed., 2002.
[2] W. Gao, L. Yang, X. Zhang, H. Liu, 2010. An Improved Sobel Edge Detection. 978-1-4244-5540-9/10. IEEE.
[3] D. Ziou, S. Tabbone, 1998. Edge detection techniques – an overview, International Journal of Pattern Recognition and Image
Analysis, 8, 537–559.
[4] M. Qasim, W. L. Woon, Z. Aung, V. Khadkikar, 2013. Intelligent Edge Detector Based on Multiple Edge Maps. 978-1-4673-5157-
7/13. IEEE.
[5] S. Dangeti, 2003. De-noising Techniques: a Comparison. M.S. Thesis. Louisiana State University.
[6] S. Kumar, P. Kumar, M. Gupta, A. K. Nagawat, 2010. Performance Comparison of Median and Wiener Filter in Image De-noising.
International Journal of Computer Application, 12, 4.
[7] S. Zhong, V.Cherkassky, 2000. Image de-noising using wavelet thresholding and Model selection. IEEE.
Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function
www.iosrjournals.org 85 | Page
[8] G. Ilango, R. Marudhachalam, 2011. New hybrid filtering techniques for removal of gaussian noise from medical images. ARPN
Journal of Engineering and Applied Sciences, 6, 2.
[9] L. Bin, M. S. Yeganeh, 2012. Comparison for image edge detection algorithms. IOSR Journal of Computer Engineering
(IOSRJCE), 2, 01-04.
[10] J. C. Church, Y. Chen, S.V. Rice, 2008. A spatial median filter for noise removal in digital images. IEEE, 618-623.
[11] G. Padmavathi, P. Subashini, M. M. Kumar, S. K. Thakur, 2009. Performance analysis of Non Linear Filtering Algorithms for
underwater images. (IJCSIS) International Journal of Computer Science and Information Security, 6, 2.
[12] F. Shafaita, D. Keysersa, T. M. Breuel. Efficient implementation of local adaptive thresholding techniques using integral images.
German Research Center for Artificial Intelligence (DFKI) GmbH D-67663 Kaiserslautern, Germany.

More Related Content

What's hot

final_project
final_projectfinal_project
final_project
Inderpreet Kaur
 
Night image enhancement using fusion technique
Night image enhancement using fusion techniqueNight image enhancement using fusion technique
Night image enhancement using fusion technique
eSAT Publishing House
 
Image Denoising by using Modified SGHP Algorithm
Image Denoising by using Modified SGHP Algorithm Image Denoising by using Modified SGHP Algorithm
Image Denoising by using Modified SGHP Algorithm
IJECEIAES
 
Image Segmentation (Digital Image Processing)
Image Segmentation (Digital Image Processing)Image Segmentation (Digital Image Processing)
Image Segmentation (Digital Image Processing)
VARUN KUMAR
 
Image restoration
Image restorationImage restoration
Image restoration
Azad Singh
 
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
Editor IJCATR
 
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
IRJET Journal
 
Denoising and Edge Detection Using Sobelmethod
Denoising and Edge Detection Using SobelmethodDenoising and Edge Detection Using Sobelmethod
Denoising and Edge Detection Using Sobelmethod
IJMER
 
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
 
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
 
50120130406013
5012013040601350120130406013
50120130406013
IAEME Publication
 
The super resolution technology 2016
The super resolution technology 2016The super resolution technology 2016
The super resolution technology 2016
Testo Viet Nam
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
Hossain Md Shakhawat
 
Blurred image recognization system
Blurred image recognization systemBlurred image recognization system
Blurred image recognization system
Rajeswari senthamil selvam
 
An Efficient Thresholding Neural Network Technique for High Noise Densities E...
An Efficient Thresholding Neural Network Technique for High Noise Densities E...An Efficient Thresholding Neural Network Technique for High Noise Densities E...
An Efficient Thresholding Neural Network Technique for High Noise Densities E...
CSCJournals
 
B045050812
B045050812B045050812
B045050812
IJERA Editor
 
Detecting image splicing in the wild Web
Detecting image splicing in the wild WebDetecting image splicing in the wild Web
Detecting image splicing in the wild Web
Symeon Papadopoulos
 
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
CSCJournals
 
20120140502012
2012014050201220120140502012
20120140502012
IAEME Publication
 

What's hot (19)

final_project
final_projectfinal_project
final_project
 
Night image enhancement using fusion technique
Night image enhancement using fusion techniqueNight image enhancement using fusion technique
Night image enhancement using fusion technique
 
Image Denoising by using Modified SGHP Algorithm
Image Denoising by using Modified SGHP Algorithm Image Denoising by using Modified SGHP Algorithm
Image Denoising by using Modified SGHP Algorithm
 
Image Segmentation (Digital Image Processing)
Image Segmentation (Digital Image Processing)Image Segmentation (Digital Image Processing)
Image Segmentation (Digital Image Processing)
 
Image restoration
Image restorationImage restoration
Image restoration
 
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
 
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
Deblurring Image and Removing Noise from Medical Images for Cancerous Disease...
 
Denoising and Edge Detection Using Sobelmethod
Denoising and Edge Detection Using SobelmethodDenoising and Edge Detection Using Sobelmethod
Denoising and Edge Detection Using Sobelmethod
 
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...
 
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)
 
50120130406013
5012013040601350120130406013
50120130406013
 
The super resolution technology 2016
The super resolution technology 2016The super resolution technology 2016
The super resolution technology 2016
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
 
Blurred image recognization system
Blurred image recognization systemBlurred image recognization system
Blurred image recognization system
 
An Efficient Thresholding Neural Network Technique for High Noise Densities E...
An Efficient Thresholding Neural Network Technique for High Noise Densities E...An Efficient Thresholding Neural Network Technique for High Noise Densities E...
An Efficient Thresholding Neural Network Technique for High Noise Densities E...
 
B045050812
B045050812B045050812
B045050812
 
Detecting image splicing in the wild Web
Detecting image splicing in the wild WebDetecting image splicing in the wild Web
Detecting image splicing in the wild Web
 
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
Homomorphic Filtering of Speckle Noise From Computerized Tomography (CT) Imag...
 
20120140502012
2012014050201220120140502012
20120140502012
 

Viewers also liked

Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automatically
eSAT Journals
 
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISEACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
Vikas Kalwani
 
Gaussian noise
Gaussian noiseGaussian noise
Gaussian noise
Tothepoint Arora
 
Image degradation and noise by Md.Naseem Ashraf
Image degradation and noise by Md.Naseem AshrafImage degradation and noise by Md.Naseem Ashraf
Image degradation and noise by Md.Naseem Ashraf
MD Naseem Ashraf
 
Image processing SaltPepper Noise
Image processing SaltPepper NoiseImage processing SaltPepper Noise
Image processing SaltPepper Noise
Ankush Srivastava
 
Noise Models
Noise ModelsNoise Models
Noise Models
Sardar Alam
 
filters for noise in image processing
filters for noise in image processingfilters for noise in image processing
filters for noise in image processing
Sardar Alam
 
Introduction to Digital Image Processing Using MATLAB
Introduction to Digital Image Processing Using MATLABIntroduction to Digital Image Processing Using MATLAB
Introduction to Digital Image Processing Using MATLAB
Ray Phan
 

Viewers also liked (8)

Gaussian noise reduction on images automatically
Gaussian noise reduction on images automaticallyGaussian noise reduction on images automatically
Gaussian noise reduction on images automatically
 
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISEACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
ACTIVE NOISE CONTROL LMS SPEECH WHITE GAUSSIAN NOISE
 
Gaussian noise
Gaussian noiseGaussian noise
Gaussian noise
 
Image degradation and noise by Md.Naseem Ashraf
Image degradation and noise by Md.Naseem AshrafImage degradation and noise by Md.Naseem Ashraf
Image degradation and noise by Md.Naseem Ashraf
 
Image processing SaltPepper Noise
Image processing SaltPepper NoiseImage processing SaltPepper Noise
Image processing SaltPepper Noise
 
Noise Models
Noise ModelsNoise Models
Noise Models
 
filters for noise in image processing
filters for noise in image processingfilters for noise in image processing
filters for noise in image processing
 
Introduction to Digital Image Processing Using MATLAB
Introduction to Digital Image Processing Using MATLABIntroduction to Digital Image Processing Using MATLAB
Introduction to Digital Image Processing Using MATLAB
 

Similar to Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function technical

Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
IRJET Journal
 
Paper id 212014133
Paper id 212014133Paper id 212014133
Paper id 212014133
IJRAT
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
Editor IJARCET
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
Editor IJARCET
 
A Novel Approach for Edge Detection using Modified ACIES Filtering
A Novel Approach for Edge Detection using Modified ACIES FilteringA Novel Approach for Edge Detection using Modified ACIES Filtering
A Novel Approach for Edge Detection using Modified ACIES Filtering
idescitation
 
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
 
P180203105108
P180203105108P180203105108
P180203105108
IOSR Journals
 
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
sipij
 
[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
 
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
iosrjce
 
R01725115118
R01725115118R01725115118
R01725115118
IOSR Journals
 
DIP - Image Restoration
DIP - Image RestorationDIP - Image Restoration
DIP - Image Restoration
Eng. Dr. Dennis N. Mwighusa
 
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
A NOBEL HYBRID APPROACH FOR EDGE  DETECTIONA NOBEL HYBRID APPROACH FOR EDGE  DETECTION
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
ijcses
 
Survey Paper on Image Denoising Using Spatial Statistic son Pixel
Survey Paper on Image Denoising Using Spatial Statistic son PixelSurvey Paper on Image Denoising Using Spatial Statistic son Pixel
Survey Paper on Image Denoising Using Spatial Statistic son Pixel
IJERA Editor
 
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
iosrjce
 
F017614146
F017614146F017614146
F017614146
IOSR Journals
 
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
 
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
IRJET Journal
 
A Fuzzy Set Approach for Edge Detection
A Fuzzy Set Approach for Edge DetectionA Fuzzy Set Approach for Edge Detection
A Fuzzy Set Approach for Edge Detection
CSCJournals
 
Ed34785790
Ed34785790Ed34785790
Ed34785790
IJERA Editor
 

Similar to Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function technical (20)

Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
 
Paper id 212014133
Paper id 212014133Paper id 212014133
Paper id 212014133
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
 
Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251Ijarcet vol-2-issue-7-2246-2251
Ijarcet vol-2-issue-7-2246-2251
 
A Novel Approach for Edge Detection using Modified ACIES Filtering
A Novel Approach for Edge Detection using Modified ACIES FilteringA Novel Approach for Edge Detection using Modified ACIES Filtering
A Novel Approach for Edge Detection using Modified ACIES Filtering
 
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...
 
P180203105108
P180203105108P180203105108
P180203105108
 
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
Performance of Various Order Statistics Filters in Impulse and Mixed Noise Re...
 
[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh[IJCT-V3I2P34] Authors: Palwinder Singh
[IJCT-V3I2P34] Authors: Palwinder Singh
 
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
A Novel Adaptive Denoising Method for Removal of Impulse Noise in Images usin...
 
R01725115118
R01725115118R01725115118
R01725115118
 
DIP - Image Restoration
DIP - Image RestorationDIP - Image Restoration
DIP - Image Restoration
 
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
A NOBEL HYBRID APPROACH FOR EDGE  DETECTIONA NOBEL HYBRID APPROACH FOR EDGE  DETECTION
A NOBEL HYBRID APPROACH FOR EDGE DETECTION
 
Survey Paper on Image Denoising Using Spatial Statistic son Pixel
Survey Paper on Image Denoising Using Spatial Statistic son PixelSurvey Paper on Image Denoising Using Spatial Statistic son Pixel
Survey Paper on Image Denoising Using Spatial Statistic son Pixel
 
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
An Efficient Approach of Segmentation and Blind Deconvolution in Image Restor...
 
F017614146
F017614146F017614146
F017614146
 
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,...
 
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
 
A Fuzzy Set Approach for Edge Detection
A Fuzzy Set Approach for Edge DetectionA Fuzzy Set Approach for Edge Detection
A Fuzzy Set Approach for Edge Detection
 
Ed34785790
Ed34785790Ed34785790
Ed34785790
 

More from IOSR Journals

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

More from IOSR Journals (20)

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

Recently uploaded

Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 

Recently uploaded (20)

Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 

Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function technical

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 15, Issue 2 (Nov. - Dec. 2013), PP 81-85 www.iosrjournals.org www.iosrjournals.org 81 | Page Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function technical H. A. Alshamarti Department of Physics, College of Science,University of Kufa, Iraq Abstract: Image edge detection algorithm is applied on images to remove Gaussian noise that is present in the image during capturing or transmission using a method which combines Prewitt operator and threshold function technique to do edge detection on the image. This method is better than a method which combines Prewitt operator and mean filtering. In this paper, firstly use mean filtering to remove initially Gaussian noise, then use Prewitt operator to do edge detection on the image, and finally applied a threshold function technique with Prewitt operator. Keywords: Gaussian noise, Prewitt operator, edge detection, threshold function I. Introduction The image edge contains some of the useful information in the image. It uses to measures the size of objects in the image, isolate particular objects from their background, and recognize objects. There are a large number of edge-finding algorithms in existence [1]. The image processing using computers has created suitable images for people to observe, identify, recognize, and understand images. Edge detection is one of research keys in image processing [2]. Edge detection is one of the fundamental operations in image processing and computer vision. It is defined as the process of locating the boundaries of objects or textures showed on the image. The positions of these boundaries are defined critical in the process of image enhancement, recognition, restoration, and compression [3, 4]. II. Gaussian Noise And Mean Filter The camera and scanner devices capture the image and these devices sometimes add extraneous noise to the image. This noise should be removed from the image for other image processing operations to return valuable results. Noise on the image is the result of errors in the image acquisition process that result in pixel values that do not reflect the true intensities of real image. The presence of noise gives the image a grainy, rough, mottled, and snowy appearance. The image noise magnitude can be varied from gradual specks to optical and radio astronomical images that are completely noise. The various types of noises on the image are presented as Gaussian, salt and pepper, speckle noises [5]. The probability density function (PDF) of Gaussian noise is equal to that of the normal distribution (Gaussian distribution). It is used as additive white noise to give additive white Gaussian noise (AWGN), where all the image pixels deviate from their original values following Gaussian curve for each image pixel with intensity value fij (1 ≤ i ≤ m, 1 ≤ j ≤ n for an m * n image), the corresponding pixel of the noisy image gij is [6, 7] gi,j= fi,j + ni,j (1) where each noise value (n) is drawn from a zero-mean Gaussian distribution [8]. Mean filter is broadly used in reducing Gaussian noise and smoothing the images as shown equation (2) [9]. Average filter or median filter is simple, instinctive, and easy to understand. It reduces the amount of intensity variation between one pixel and the next. Each pixel value on the image is replaced with the average value of its neighbors including that pixel [10]. The mean filter is a linear filter which uses a mask over pixel in the signal. Each of the components of the pixels which fall under the mask are averaged to form a single. The mean filter is 𝑚𝑒𝑎𝑛 filter ( 𝐼1 … … … … 𝐼 𝑁) = 1 𝑁 𝐼𝑖 𝑁 𝑖=1 (2) where ( 𝐼1 … … … … 𝐼 𝑁) is the image pixel range [11]. III. Edge Detection Principle The edge mostly exists between objects and background, objects and primitives. It contains rich information, step property, shape, which is able to describe the target object. Edge detection operations are
  • 2. Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function www.iosrjournals.org 82 | Page based on the idea that edge information on an image is found by looking at the relationship a pixel has with its neighbors. If a pixel has gray level values similar to those around it, there is probably not an edge at that point. However, if a pixel has neighbors with varying gray levels, it may represent an edge point. The edge is defined by a discontinuity in gray-level values [1]. There are two types of edge detection. The first derivative-based edge detection operator to detect image edges by computing the image gradient values such as Roberts, Sobel, and Prewitt operators. The second derivative-based edge detection operator is such as LOG, Canny operators [9]. 3.1. Prewitt Operator The Prewitt operator masks edges in both the horizontal and vertical directions and then combines this information into a single metric. The masks are as follows -1 -1 -1 0 0 0 1 1 1 -1 0 1 -1 0 1 -1 0 1 Row Mask (P1) Column Mask (P2) These masks are convolved with the image. The edge magnitude and edge direction are defined by Edge Magnitude = P1 2 + P2 2 (3) Edge Direction = tan−1 𝑃1 𝑃2 (4) 3.2. Threshold Function Technique The Image threshold technique is a common task in computer vision and graphic applications. The goal of image threshold technique is classify pixels as either “dark” or “light”. Adaptive of threshold is a form of threshold that takes into account spatial variations in illumination [12]. Let N be natural numbers, (x, y) be the spatial coordinates of a digitized image, and G (0, 1. . . I – 1) be positive integers. The brightness (gray level) of a pixel with coordinates (x, y) is denoted as f (x, y). Consider a original image in which g(x, y)  [0, 255] be the intensity of a pixel at location (x, y). A threshold t(x, y) for each pixel is computed by 0 if g(x, y) ≤ t(x, y) 𝐼(𝑥, 𝑦) = f(x,y) if g(x, y) ≥ t(x, y) IV. Method And Algorithms Method and algorithms are: a. Conversion of image to gray level. b. Gaussian noise addition for the image (= 0.005:0.005:0.05). c. Application of mean filter on the image. d. Using Prewitt operator (input image). e. Using the threshold function technique (output image). V. Analysis And Experimental Results Figure1 shows original image used in this study. Gaussian noise is added to the image (Figure 2). Figure 3 shows application of the mean filter to remove the primary noisy images. Figure 4 shows using the Prewitt operator of edge detection. Figure 1. Original image
  • 3. Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function www.iosrjournals.org 83 | Page (1) (2) (3) (4) (5) =0.005 =0.01 =0.015 =0.02 =0.025 (6) (7) (8) (9) (10) =0.03 =0.035 =0.04 =0.045 =0.05 Figure 2. Gaussian noise with mean = 0 (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Figure 3. Mean filter, window (3*3) (1) (2) (3) (4) (5)
  • 4. Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function www.iosrjournals.org 84 | Page (6) (7) (8) (9) (10) Figure 4. Mean filter and Prewitt operator, window (3*3) for (Figure 3) The methods which combine mean de-noising and Prewitt operator are commonly used to find the edge. However, these methods cannot remove Gaussian noise very well. This paper proposes Prewitt operator of edge detection based on threshold function technique. It can be removed the noise effectively and can detect the edge detail very well. The results are showed in Figure 5. (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Figure 5. Prewitt operator based on threshold function technique (threshold value = 160) VI. Conclusions Prewitt operator methods with mean filter failed to perform adequately to remove Gaussian noise that have different amount (0.005:0.005:0.05). In this work, the Prewitt operator with threshold technique (threshold value =160) is used very well for Gaussian noise removal on image. VII. Acknowledgments The author is grateful to Dr. Basim A. Almayahi, Department of Environment, College of Science, University of Kufa for assisting me throughout conducting the present research. Financial support was provided by the College of Science, University of Kufa. Reference [1] R. Gonzalez, R. E. Woods. Digital Image Processing. Addison-Wesley, 2nd Ed., 2002. [2] W. Gao, L. Yang, X. Zhang, H. Liu, 2010. An Improved Sobel Edge Detection. 978-1-4244-5540-9/10. IEEE. [3] D. Ziou, S. Tabbone, 1998. Edge detection techniques – an overview, International Journal of Pattern Recognition and Image Analysis, 8, 537–559. [4] M. Qasim, W. L. Woon, Z. Aung, V. Khadkikar, 2013. Intelligent Edge Detector Based on Multiple Edge Maps. 978-1-4673-5157- 7/13. IEEE. [5] S. Dangeti, 2003. De-noising Techniques: a Comparison. M.S. Thesis. Louisiana State University. [6] S. Kumar, P. Kumar, M. Gupta, A. K. Nagawat, 2010. Performance Comparison of Median and Wiener Filter in Image De-noising. International Journal of Computer Application, 12, 4. [7] S. Zhong, V.Cherkassky, 2000. Image de-noising using wavelet thresholding and Model selection. IEEE.
  • 5. Removal of Gaussian noise on the image edges using the Prewitt operator and threshold function www.iosrjournals.org 85 | Page [8] G. Ilango, R. Marudhachalam, 2011. New hybrid filtering techniques for removal of gaussian noise from medical images. ARPN Journal of Engineering and Applied Sciences, 6, 2. [9] L. Bin, M. S. Yeganeh, 2012. Comparison for image edge detection algorithms. IOSR Journal of Computer Engineering (IOSRJCE), 2, 01-04. [10] J. C. Church, Y. Chen, S.V. Rice, 2008. A spatial median filter for noise removal in digital images. IEEE, 618-623. [11] G. Padmavathi, P. Subashini, M. M. Kumar, S. K. Thakur, 2009. Performance analysis of Non Linear Filtering Algorithms for underwater images. (IJCSIS) International Journal of Computer Science and Information Security, 6, 2. [12] F. Shafaita, D. Keysersa, T. M. Breuel. Efficient implementation of local adaptive thresholding techniques using integral images. German Research Center for Artificial Intelligence (DFKI) GmbH D-67663 Kaiserslautern, Germany.