adding gaussian noise to an image
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how can i add gaussian noise to an image without using built in function imnoise....please help..
0 comentarios
Respuestas (1)
Wayne King
el 2 de Oct. de 2012
You can use randn()
X = ones(256,256)+randn(256,256);
You have to consider the datatype of your image though to make it useful.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!