|
|
|
|
3D pyramid interpolation |
for each iteration i{
estimate missing data m_i from PEF a_(i-1) using equation 5
estimate PEF a_i from missing data m_i using equation 4
}
I start with my guess of the PEF,
. First, I make an operator
that is convolution with
, and I use it to estimate the missing data
. From
, I make an operator
that is a convolution with
. Then I update
using
, calling the updated
as
. This process makes one iteration of the linearized problem. Then I repeat this process, making
from
, updating
to
using
, making
from
, updating
to
using
, and so on... Finally the algorithm will converge to some
and
; hopefully, by careful choosing of
, I will converge to the correct
and
.
|
|
|
|
3D pyramid interpolation |