The Insight Journal logo

An Implementation of Parallel Fast Marching Using the Message Passing Interface

Hobbs, Kevin
Ohio University
Publication cover image

Please use this identifier to cite or link to this publication: http://hdl.handle.net/10380/3137
New: Prefer using the following doi: https://doi.org/10.54294/xfzve8
Submitted by Kevin Hobbs on 2009-11-23 12:39:35.

This document introduces a program based on the algorithm described by Maria Cristina Tugurlan. The program uses file readers, image filters, and file writers from the Insight Toolkit ITK www.itk.org. It produces as output an image whose values are the times of first arrival of a wavefront that spreads from seed points with a speed at every point equal to the input image intensity. It performs the computation in parallel on distributed memory computers using the Message Passing Interface MPI. Each MPI process reads a small piece of the input image into memory. It computes fast marching on its piece. It sends and receives the values from fast marching at piece boundaries. It recalculates fast marching a number of times set from the command line using the new boundary values each time. Each MPI process writes only a small piece of the output file. A substantial difference is seen when the output of MPI fast marching is compared to the output of serial fast marching. This difference may be acceptable for some uses. The program should be able to handle input images that are too large to fit in the memory of a single computer.