random noise matlab.
6 views (last 30 days)
Show older comments
how to add random noise to image in matlab?
0 Comments
Accepted Answer
David Young
on 1 Apr 2011
There are many choices you might make for the distribution of the noise. For independent additive Gaussian noise you could do this:
noisyImage = originalImage + noiseAmplitude * randn(size(originalImage));
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!