Code covered by the BSD License  

Highlights from
Accurate Fast Marching

4.33333

4.3 | 9 ratings Rate this file 102 Downloads (last 30 days) File Size: 120.62 KB File ID: #24531
image thumbnail

Accurate Fast Marching

by Dirk-Jan Kroon

 

23 Jun 2009 (Updated 14 Jan 2011)

Multistencils second order Fast Marching 2D and 3D including rk4 shortest path and skeletonize

| Watch this File

File Information
Description

Descriptions:

- The function MSFM2D/MSFM3D calculates the shortest distance from a list of points to all other pixels in an 2D or 3D image, using the Multistencil Fast Marching Method (MSFM). This method gives more accurate distances by using second order derivatives and cross neighbors.

- The function Skeleton will calculate an accurate skeleton (centerlines) of an object represented by an binary image / volume using the fast-marching distance transform.

- The function Shortestpath traces the shortest path from start point to source point using Euler or Runge Kutta 4 in the 2D or 3D distance map.

Implementation:
The 2D fast marching method is implemented in both Matlab-code and c-code. The c-code uses a custom build unsorted binary tree minimum search which out performs a normal binary sorted tree. The c-code is more than 500 times as fast as the matlab-code (compiled with the Microsoft Visual compiler).

Literature:
We used two papers:
- J. Andreas Baerentzen "On the implementation of fast marching methods for 3D lattices"
 - M. Sabry Hassouna et al. "Multistencils Fast Marching Methods: A Highly Accurate Solution to the Eikonal Equation on Cartesian Domains"
- R. van Uitert et al. "Subvoxel precise skeletons of volumetric data based on fast marching methods"

We compared the results of our implementation with the results in the paper:
- Normal fast marching 1th order, exact the same results.
- 2th order, significant smaller errors than in the paper.
- Multistencil 1th order, larger errors than in the paper
- Multistencil 2th order, significant worse results than published in the paper. (Note : Our results are in accordance to other existing implementations )

The last version of our code produces better result than in the paper or other literature. This is achieved by solving the polynomial roots using all the available information, as described by the comment of Olivier Roy below.

Examples:
Compile the c-code with mex msfm2d.c; mex msfm3d.c; mex rk4.c;

Try the examples in the help of msfm2d, shortestpath and skeleton

MATLAB release MATLAB 7.8 (R2009a)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (23)
24 Jun 2009 Sebastien Paris

Fast and work perfectly. Very usefull for Path Planning

07 Aug 2009 Petros Mpogiatzis

Great submition, works perfectly, simple to understand how it works, well done!

27 Aug 2009 Nora

Nice submission, works perfectly, and well commented. Thank you!
One thing I was wondering:
Is it possible to give a maximum distance to compute, and not fill the entire image with correct distances? In my problem that would speed up computation considerably.

Furthermore, I deleted the line
if(itt==652221) { printf("569 \n"); }
in msfm2d.c as it put my command window full with 569s.

22 Oct 2009 Matteo

Does this work with R2007a? Thank you

05 Mar 2010 Daniela

The code is easy to understand, but the speed function must be between [1e-8,1], otherwise you get a complex number to value of T, where T is arrival time - this is not correct. Anybody observe/solve that? *Notice that such a constraint for F is theoretically wrong.*

29 Mar 2010 Dirk-Jan Kroon

*Daniela
The speed function may contain all values larger then zero.
But in practice you have numerical round offs, and because the next "time front" always depend on the old "time front", this error will grow and can sometimes become very high.

15 Oct 2010 Florence

Nice work !
But there are prohibitive memory problems when using the C version. The matlab script stops with the message (OUT OF MEMORY) when calling the MSFM2D several times inside the script.

01 Dec 2010 Olivier Roy

Great submission thanks. The tree structure you use is very efficient.

I compared, as you did, the accuracy of your implementation with the results reported in M. Sabry Hassouna et al. "Multistencils Fast Marching Methods: A Highly Accurate Solution to the Eikonal Equation on Cartesian Domains". Not sure exactly what they do but I found that the accuracy depends a lot on how the results of the two stencils are combined (which is somewhat arbitrary since we do not know a priori which stencil provides the most accurate result).

To improve the accuracy here is the trick: instead of computing the distance with the first and second stencils separately, simply sum the corresponding second order polynomials and solve the resulting second order equation. In other words, simply replace

if(usecross) {
Coeff[0]=0; Coeff[1]=0; Coeff[2]=-1/(max(pow2(Fij),eps));
...

by

if(usecross) {
Coeff[0]+=0; Coeff[1]+=0; Coeff[2]+=-1/(max(pow2(Fij),eps));

in the CalculateDistance function.

With this little modification, I could obtain better results that the aforementioned paper for their Experiment 1.

Note that a weighted sum of the two polynomials can also be done.

Hope this helps,
Olivier

02 Dec 2010 Chen Shuo

My i ask a question: I prceed the codes as following, but the shortestpath is not finded. What is the reason?
  My testing code:
  SourcePoint = [26; 100]; %Starting point
   F = zeros([101 101]);
   F(9:27,10:12) = 1;
   F(25:27,12:100) = 1;
   SpeedImage = F*1000+0.001;
   [X Y] = ndgrid(1:101, 1:101);
   T1 = sqrt((X-SourcePoint(1)).^2 + (Y-SourcePoint(2)).^2);
   tic; T1_MSFM2 = msfm(SpeedImage, SourcePoint, true, true); toc;
   figure, imshow(T1_MSFM2,[ ]); colormap gray;
   StartPoint=[10;11];
   ShortestLine=shortestpath(T1_MSFM2,StartPoint,SourcePoint);
   hold on, plot(ShortestLine(:,2),ShortestLine(:,1),'g')

13 Dec 2010 Dirk-Jan Kroon

*Olivier Roy,
Thanks for your very useful suggestion, to increase the accuracy.

03 Jan 2011 Waiwai Wang

Very useful submission,and I have a question that is how long it will be finished based on 3D image during your experiment?

03 Jan 2011 Waiwai Wang  
11 Jan 2011 xiang fiona

Excellent job!
But I have a problem when I test it on my data, local tumor vascular which is unconnected volume.However,The result skeleton was turned out to be connected and passed through two separated vessels.How can I fix this?

13 Jan 2011 Marios Karaoulis

Can you provide the m files of the c code? Some of us do not have matlab compiler.

18 Jan 2011 Baran Aydogan

Here is a compiler error and the fix:

My compiler (gcc version "4.4.3-4ubuntu5)") gives the following error when compiling "rk4.c":

------------------
rk4.c: In function ‘RK4STEP_2D’:
rk4.c:133: error: expected expression before ‘/’ token

    mex: compile of ' "rk4.c"' failed.

??? Error using ==> mex at 222
Unable to complete successfully.

Error in ==> compile_c_files at 12
mex('rk4.c');
----------------------------------

The referred line says:
//double D[2],dl;

FIX:
Just replace the line with:
/*double D[2],dl;*/

Thanks for the great contribution!

06 May 2011 Tieyuan

Thanks for sharing code. It is faster one than what I used for my research.

One problem I found: when I used constant speed, shortestpath code will crash. Also, shortestpath for 3D case (just like 2D since constant value in y direction) is not consistent with 2D case. I can send your my results if you want to take a look at them.

08 May 2011 Zara

I find a large difference in my results between using and not using cross-neighbours, and would like to know what exactly the cross-neighbours are that you use - as I can not find a reference for them anywhere.
Are they the diagonal neighbours calculated via directional derivatives (Hassouna 2007)?

27 Jun 2011 Erik Valenti

Is there a way to get a MATLAB .m version of the msmf3d.c code? We are trying to keep everything to a MATLAB program if possible. Thanks

27 Jun 2011 Erik Valenti

Thank you for this code! It is a great help for my research. Has anyone come across problems with running out of memory? If so, have you found a way to fix this problem.

27 Jul 2011 Matt

Hello, going along what Erik Valenti said, is there a .m version of the msmf3d.c code? Thanks

25 Oct 2011 olivier cros

Dear Dirk-Jan Kroon,

For a sake a fast computation, I ran the example given in the skeleton file with a reduced version of the vessels3d =>V=V(1:128,1:128,1:128);

After final completion, if you display the skeleton along with an isosurface of the volume of interest (V), and rotate the figure, the skeleton seems to connect the three separated parts into one skeleton.

I think there should be some sort of check on whether the skeleton is passing a background area where there is no foreground voxels representing the blood vessel.

Unless I am doing something wrong, and if so, I will immediately apologize to you.

I also discovered a tiny mistake, easily solvable, in the example of your skeleton code (line 42 - commented):

%V = imfill(Vraw > 30000,'holes');

It should be V instead of Vraw.

Otherwise, thank you for sharing this code with us.

Best regards,

Olivier Cros.

12 Dec 2011 ilkay oksuz

Can anyone help me how to use the compile c-files code in 64-bit computers.

I could not compile it on 64-bit. I end up with the following error.

Error using ==> mex at 208
Unable to complete successfully.

On 32-bit the memory of my computer is not sufficient even for 3-D example..

Thanks for the contribution by the way..

01 Jan 2012 Mohammad

Hi every one.
I wrote FMM code in C++ by myself but for large number of grids, I think it take too much time. Would you please tell me know that typically how long it should take for running the efficient code in a mesh that contains 1 million grids.(100*100*100).

Thanks for your help in advance.

Please login to add a comment or rating.
Updates
23 Jun 2009

text

28 Sep 2009

Changed c-code comments // to /* */
In help added, that speed function must be larger than zero

01 Oct 2009

Linux Ubuntu Tested

27 Oct 2010

Added skeletonize method for vessel centerline extraction

21 Dec 2010

Centerline in 3D now works robust. More Accurate see comment of Olivier Roy.

14 Jan 2011

Fixed Crash-bug, and solved bug when curvature and 2e order are enabled. Shortest-path optimized.

Tag Activity for this File
Tag Applied By Date/Time
msfm Dirk-Jan Kroon 23 Jun 2009 12:39:33
multistencils Dirk-Jan Kroon 23 Jun 2009 12:39:33
multi stencils Dirk-Jan Kroon 23 Jun 2009 12:39:33
fast marching Dirk-Jan Kroon 23 Jun 2009 12:39:33
eikonal Dirk-Jan Kroon 23 Jun 2009 12:39:33
equation Dirk-Jan Kroon 23 Jun 2009 12:39:33
shortest path Dirk-Jan Kroon 23 Jun 2009 12:39:33
binary tree Dirk-Jan Kroon 23 Jun 2009 12:39:33
fastmarching Dirk-Jan Kroon 27 Oct 2010 11:15:35
skeleton Dirk-Jan Kroon 27 Oct 2010 11:15:35
skeletonize Dirk-Jan Kroon 27 Oct 2010 11:15:35
vessels Dirk-Jan Kroon 27 Oct 2010 11:15:35
centerline Dirk-Jan Kroon 27 Oct 2010 11:15:35
center line Dirk-Jan Kroon 21 Dec 2010 08:20:31

Contact us at files@mathworks.com