Code covered by the BSD License  

Highlights from
Accurate Fast Marching

image thumbnail
from Accurate Fast Marching by Dirk-Jan Kroon
Multistencils second order Fast Marching 2D and 3D including rk4 shortest path and skeletonize

compile_c_files.m
% This script will compile all the C files of the registration methods
cd('functions');
files=dir('*.c');
clear msfm2d
mex('msfm2d.c');
clear msfm3d
mex('msfm3d.c');
cd('..');

cd('shortestpath');
clear rk4
mex('rk4.c');
cd('..')

Contact us at files@mathworks.com