Digital Image Noise Processing Based On MATLAB Software
Digital Image Noise Processing Based On MATLAB Software
ISSN No:-2456-2165
Abstract:- On the basis of the analysis of digital image On the beauty of the whole photo. In order to make the
effect improvement basic theory research, a clearer picture more clear, it is necessary to eliminate the noise in the
processing algorithm of university image effect is picture and deal with the deformation of the picture. The
proposed to make the image more distinct and more operation of eliminating interference information and
quickly presented.By MATLAB software to write retaining relevant information is usually called image
relevant simulation code, respectively using the mean preprocessing, and the step of image noise reduction is also
filtering method and median filtering method to denoise called picture smoothing processing[3].
the image, so as to improve the image clarity, brightness,
finally the two methods are compared, in order to better There is a lot of noise in real life (such as grating
understand the theoretical knowledge. The software scanning, film particles, machine parts, signal propagation,
running results show that this method can achieve image etc.), which can be divided into many kinds, including Gauss,
denoising succinctly and accurately, and has high pepper salt, Rayleigh, etc. Generally, it can be removed by
learning and practical value. filtering method. General filtering methods include mean
method, median filtering method, adaptive, adjacent average,
Keywords:- Image Denoising; Image Definition; Filtering; selective average, low-pass filtering, etc[4].
MATLAB.
This paper is based on MATLAB simulation, by adding
I. INTRODCUTION Gaussian noise and salt and pepper noise to the original image
respectively, and then using the mean filter method and
Digital image technology is a new technology proposed median filter method respectively, to compare the effect of
under the support of a number of technical achievements and noise processing and draw a conclusion.
theoretical achievements. In the practical application process,
it relies on the functional support of the computer to transform II. NOISE ADDITION
the image information into two-dimensional digital signals, so
as to achieve various operations. Therefore, the performance The gray image polluted by Gaussian noise points has
of this technology cannot be separated from the support of the any noise position, but the gray value of this kind of noise
computer, which is also known as computer image points is randomly distributed. The gray image polluted by
processing.This technology includes the functions of pepper and salt noise points has random scattered noise
denoising, enhancing image sharpness, recognition, coding, positions and is shown in black and white dots on the screen,
restoration, segmentation, etc. With the continuous deepening but they have no connection with the gray value of the
of research in related fields, the technical performance is original image, usually the gray value of this kind of noise
continuously enhanced, and the restoration degree of image points and the gray value of nearby pixels have a big
reproduction is greatly improved. Based on the performance difference, in general is the extreme value[5].
advantages of this technology and the analysis of technical
advantages, the digital image processing technology has a For the processing of MATLAB image, the imnoise
more extensive application prospect in the future. However, function can be added to the noise, and its imperative
the indispensable part of life is the impact of noise on the parameter is g=imnoise (f, type, parameters), where g is the
image[1]. image after adding noise, f is the original image,type indicates
the type of the noise to be added, and parameters indicate
Noise has a great impact on image quality and makes it some parameters of the noise.
difficult to analyze the image. Image noise is a random
variation of brightness or color information in an image. It is III. NOISE REMOVAL
generally produced by the sensors and circuits of scanners or
digital cameras. It may also be caused by the inevitable loose A. Mean filtering method
grain noise in film particles or ideal photodetectors[2]. The Let the signal polluted by noise be g(t), the original
most immediate phenomenon is the blurring that occurs when signal be f(t), and the noise be n(t).g(t)=f(t)+n(t).The common
you zoom in.There is no doubt that these noises will have a expression of mean filtering is
certain impact
y1 = double(G);
(c)After adding salt and pepper noise y2 = double(K);
Y1=y1;
Fig 1 Images before and after adding noise Y2=y2;
for i = 2: height-1
VI. REFERENCES