Fast marching method – Wikipedia

before-content-x4

From Wikipedia, the free encyclopedia

after-content-x4

Algorithm for solving boundary value problems of the Eikonal equation

The fast marching method[1] is a numerical method created by James Sethian for solving boundary value problems of the Eikonal equation:

Typically, such a problem describes the evolution of a closed surface as a function of time

u{displaystyle u}

with speed

after-content-x4
f{displaystyle f}

in the normal direction at a point

x{displaystyle x}

on the propagating surface. The speed function is specified, and the time at which the contour crosses a point

x{displaystyle x}

is obtained by solving the equation. Alternatively,

u(x){displaystyle u(x)}

can be thought of as the minimum amount of time it would take to reach

Ω{displaystyle partial Omega }

starting from the point

x{displaystyle x}

. The fast marching method takes advantage of this optimal control interpretation of the problem in order to build a solution outwards starting from the “known information”, i.e. the boundary values.

The algorithm is similar to Dijkstra’s algorithm and uses the fact that information only flows outward from the seeding area. This problem is a special case of level-set methods. More general algorithms exist but are normally slower.

Extensions to non-flat (triangulated) domains solving

for the surface

S{displaystyle S}

and

xS{displaystyle xin S}

, were introduced by Ron Kimmel and James Sethian.

Algorithm[edit]

First, assume that the domain has been discretized into a mesh. We will refer to meshpoints as nodes. Each node

xi{displaystyle x_{i}}

has a corresponding value

Ui=U(xi)u(xi){displaystyle U_{i}=U(x_{i})approx u(x_{i})}

.

The algorithm works just like Dijkstra’s algorithm but differs in how the nodes’ values are calculated. In Dijkstra’s algorithm, a node’s value is calculated using a single one of the neighboring nodes. However, in solving the PDE in

Rn{displaystyle mathbb {R} ^{n}}

, between

1{displaystyle 1}

and

n{displaystyle n}

of the neighboring nodes are used.

Nodes are labeled as far (not yet visited), considered (visited and value tentatively assigned), and accepted (visited and value permanently assigned).

  1. Assign every node
  2. For every far node
  3. Let
  4. For every neighbor
  5. If
  6. If there exists a considered node, return to step 3. Otherwise, terminate.

See also[edit]

External links[edit]

  1. ^ J.A. Sethian. A Fast Marching Level Set Method for Monotonically Advancing Fronts, Proc. Natl. Acad. Sci., 93, 4, pp.1591–1595, 1996. [1]


after-content-x4