random noise matlab.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to add random noise to image in matlab?
0 comentarios
Respuesta aceptada
David Young
el 1 de Abr. de 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));
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!