Parent Topic: ALGORITHM
The resulting grey-level value R for the smoothed pixel is:
R = Im for Ci <= Cu
R = Im * W + Ic * (1-W) for Cu < Ci < Cmax
R = Ic for Ci >= Cmax
where:
W = exp (-DampFactor (Ci-Cu)/(Cmax - Ci))
Cu = SQRT(1/NumberLooks)
Ci = S / Im
Cmax = SQRT(1+2/NumberLooks)
Ic = center pixel in filter window
Im = mean value of intensity within window
S = standard deviation of intensity within window