Proble with imnoise function
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi to all,
Does anyone some the "formula" that is used to add gaussian white noise to the image?
Thanks in advance,
J
0 Kommentare
Antworten (1)
DGM
am 21 Apr. 2021
Bearbeitet: DGM
am 21 Apr. 2021
Look in $MLROOT/toolbox/images/images/+images/+internal/algimnoise.m
or from the MIMT implementation (not yet published):
case 'gaussian'
outpict=inpict + gaumean + sqrt(gauvar)*randn(s0);
Where gaumean is the noise mean, gauvar is the noise variance, and s0 is the image size.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!