random noise matlab.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to add random noise to image in matlab?
0 Commenti
Risposta accettata
David Young
il 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));
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!