Skip to main content
. 2023 Jan 17;36(3):1216–1236. doi: 10.1007/s10278-022-00768-8

Table 1.

Pseudo code of new pixel evaluation

Input: Fν(c,d)
Output: Fg(c,d)
Parameter: Thr1,Thr2,Thr3 represent threshold value computed with the proposed FAL algorithm
Procedure:
Begin
Select 3×3 window by adapting noise pixel as center pixel
Match noisy pixel using input image
Determine the count of similar matched pixel count QT
If (QT>Thr1)
Discover fun(c,d)
If func,d>Thr2
Determine α(c,d)
else
α(c,d)=fun(c,d)
If func,d>Thr3
Fg(c,d)=F(c,d)
else
Determine new pixel values for noisy pixels Fg(c,d)
else
Fgc,d=F(c,d)
End