Variance using median filter

조회 수: 1 (최근 30일)
Albert Tagtum
Albert Tagtum 2022년 6월 20일
편집: DGM 2022년 6월 21일
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?

답변 (1개)

Jon
Jon 2022년 6월 20일
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