Hi, 

I know in MATLAB 'imnoise' command scale the image between [0,1], so the noisy image that generates using the following command "noisy_image = imnoise(Original_im,'gaussian',0.1)" with variance '0.1' is more degraded than "noisy_image = original_im + sqrt(0.1)*randn(n,m) " command. Now my questions are:

1. Why image is scaled between [0,1]?

2. How the variance is scaled in "noisy_image = original_im + sqrt(variance)*randn(n,m) " command? It means if i have a variance of '200', what should be the value that corresponds to MATLAB command 'imnoise' variance.  

More Susant Kumar Panigrahi's questions See All
Similar questions and discussions