Adding noise into an image manually instead of using imnoise
古いコメントを表示
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 件のコメント
Himanshu Tekwani
2015 年 10 月 7 日
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
2018 年 4 月 20 日
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
2022 年 9 月 29 日
how to culculate the percent of noise in an image.
採用された回答
その他の回答 (2 件)
Image Analyst
2012 年 8 月 31 日
1 投票
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 件のコメント
Sufyan
2012 年 8 月 31 日
Image Analyst
2012 年 8 月 31 日
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
2021 年 8 月 29 日
very helpful, thanks!
Ameerah Omar
2015 年 11 月 21 日
0 投票
how i can add noise in image it come from Cauchy distribution???
1 件のコメント
Image Analyst
2015 年 11 月 21 日
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.
カテゴリ
ヘルプ センター および File Exchange で Images についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!