I have an image with uniform intensity everywhere with gray value = 100 then i added additive zero-mean independent Gaussian noise with standard deviation = 5
I = ones(100,100)*100;
I_n=I+(5*randn(100,100));
I think that the mean and standard deviation of the pixel intensity in the noisy image will be 100 and 5 respectively,
then i want to reduce the noise in the noisy image by 2x2 averaging mask.
what is the effect of the averaging mask on the mean and standard deviation of the pixel intensity in the image? is it better to increase the size of the mask?