random noise matlab.
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to add random noise to image in matlab?
0 commentaires
Réponse acceptée
David Young
le 1 Avr 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));
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!