Parent Topic: ALGORITHM
The resulting grey level value R for the smoothed pixel is:
R = Ic * W + Im * (1 - W)
where:
W = 1 - Cu^2/Ci^2
Cu = SQRT(1/NLOOK)
Ci = S / Im
Ic = center pixel pixel of filter window
Im = mean value of intensity within window
S = standard deviation of intensity within window
The Cu above is the estimated noise variation coefficient.
Ci is the image variation coefficient. W is a weighting function.