Adding noise into an image manually instead of using imnoise
Mostrar comentarios más antiguos
I am to trying to understand the algorithms behind matlab way of adding noise into an image,
The algorithm which Matlab use to add Gaussian noise is this,
b = a + sqrt(p4)*randn(sizeA) + p3;
When I tried to implement this algorithm manually it worked successfully however it doesn't work unless i changed the image class to double. Why is that so ? Why should i suppose to change the class to double when adding gaussian noise ?
Here is my code,
I = imread('2.jpg');
J = rgb2gray(I);
p3= 0;
p4 = 0.05;
J = im2double(J);
b = J + sqrt(p4)*randn(size(J)) + p3;
imshow(b)
Just like Gaussian Noise i tried adding the Salt n Pepper noise manually, here is the algorithm Matlab use to add Salt n Pepper noise,
b = a; <-- Assign b to the input image
x = rand(sizeA); <--- Generate random pixels from the image pixels
d = find(x < p3/2); <--- Find the pixels whose values are less than half of the mean value
b(d) = 0 <-- Implement minimum saturation to them
d = find(x >= p3/2 & x < p3) <--- Find the pixels whose values are greater than half of the mean value & less than mean value
b(d) = 1; <-- Implement maximum saturation to them
and I implemented it as below,
I = imread('2.jpg');
J = rgb2gray(I);
p3= 0.5;
x = rand(size(J));
d = find(x < p3/2);
J(d) = 0; % Minimum value
d = find(x >= p3/2 & x < p3);
J(d) = 1; % Maximum (saturated) value
imshow(J)
but the output Image doesn't show any Salt n pepper noise in the Image , I wonder where the final image is actually stored in my code?
3 comentarios
Himanshu Tekwani
el 7 de Oct. de 2015
Check your value of p3. It is zero here.... So the pepper noise is assigned to the pixels where the value of rand is < p3/2 (i.e. 0) but rand function always returns the values>=0. So pepper noise is not generated. Similar is the logic for salt noise.
sravani honey
el 20 de Abr. de 2018
sir, i am doing my project on random impulse noise removal and i am adding random noise using noisyimage = (I + p*rand(size(I)))/(1+p) this function but it doesn't clear results on my project. can u please give any other command related to adding random impulse noise to the image?
Mintesnot
el 29 de Sept. de 2022
how to culculate the percent of noise in an image.
Respuesta aceptada
Más respuestas (2)
Image Analyst
el 31 de Ag. de 2012
1 voto
Gaussian noise can have any magnitude. So how are you going to add 4.28435435 to an image that can have only integer values? If you could and then it was converted to an integer, you'd lose the fractional part of the number, which means it would no longer be Gaussian. So that's why you have to convert the image to floating point.
3 comentarios
Sufyan
el 31 de Ag. de 2012
Image Analyst
el 31 de Ag. de 2012
No. Gaussian noise can be any floating point value. However if you force it to be in a uint8 image you are not letting it be any value, and so it's not Gaussian noise anymore. So to prevent that, you have to convert your image to floating point (single or double).
AMIR KHAN
el 29 de Ag. de 2021
very helpful, thanks!
Ameerah Omar
el 21 de Nov. de 2015
0 votos
how i can add noise in image it come from Cauchy distribution???
1 comentario
Image Analyst
el 21 de Nov. de 2015
Use the formula for the CDF and then use rand() to draw numbers from the distribution. Attached is an example where I do that for the Rayleigh distribution.
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!