Variance using median filter

1 visualización (últimos 30 días)
Albert Tagtum
Albert Tagtum el 20 de Jun. de 2022
Editada: DGM el 21 de Jun. de 2022
Hi,
In calculating variance using definition and implementing median filter why does in the code
variance = medfilt2(double(I_noise).^2, [N N], 'symmetric') - (medfilt2(double(I_noise), [N N],'symmetric')).^2;
produce zero in all points of an image?
How do I correctly calculate the variance of a median filtered image?

Respuestas (1)

Jon
Jon el 20 de Jun. de 2022
In your expression:
variance = medfilt2(double(I_noise).^2, [N N], 'symmetric') - (medfilt2(double(I_noise), [N N],'symmetric')).^2;
both of the terms on the right hand side of the expression are identical. Subtracting one from the other will obviously give zero.
This is the same for example as the expression:
x = 2 - 2
which of course gives an answer of x = 0;
Also I think you are getting confused about median and average.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by