just as we can make a noisy image with imnoise :imnoise (A, 'salt & pepper' ,[density]).how to add random noise with a particular density. thanks

link|improve this question
feedback

1 Answer

Additive white Gaussian noise (AWGN)?

z = mu + randn(size(im)).*sigma;
im = im + z;
link|improve this answer
i was saying about random noise and what mu and sigma stands for.i want to add 10%,20% ... random noise to the image. – sujaya Feb 23 at 10:19
Surely you can look up the AWGN definition on the Wikipedia yourself? – Maurits Feb 23 at 12:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.