Do variance get increased by increasing SNR?
Mostra commenti meno recenti
I have added SNR of 20 to an image using the below formula of variance
SNR = [var(image)/var(noise)]
var(noise)=var(image)/SNR
in matlab code...
v = var(I(:)) / 10;% SNR=10
I_noisy = imnoise(I, 'gaussian', 0, v);
Is it correct?...
Risposte (1)
Image Analyst
il 9 Mag 2013
0 voti
No, it's not. Well maybe it might be close if your image was 100% noise and no signal. Otherwise there is no basis for your assumption that the noise is the same as the variance of the image.
Categorie
Scopri di più su Image Category Classification in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!