Skip to main content
. 2016 Jun 9;16(6):845. doi: 10.3390/s16060845
Algorithm 1. Blur Kernel Estimation.
Input: Blurred image, reliable structures and the initial value of k from previous iterations or previous level;
 
for n = 1 to Itr (Itr: number of iterations) do
  Estimate the blur kernel using the reliable structures. (Equation (7))
  Refine the blur kernel by solving Equations (10) and (11) alternately.
  kk˜;
end for
 
Output: Blur kernel k.