isosurface extraction

Hi,

I wanna build a program to extract isosurfaces from data collections. I have heard about Marching Cubes algorithms but I would like to know if there is any interesting web about it ad if it is really fast or the “fastest” algorithm I can use for that,

Thanks,
JRB

Goto to your favorite search engine and type
“Lorensen marching cubes” and you’re busy reading the next years.

Without decent optimizations the performance is O(n^3).

Here’s a link to an implementation (posted before on this forum I think): http://astronomy.swin.edu.au/~pbourke/modelling/polygonise/
But the normals should be generated with central differences. Search on this forum for that, too.

And here’s a link to links for others. http://www.cs.berkeley.edu/~jrs/meshf99/

You might also search for publications from “Mathieu Desbrun” and “Implicit Surfaces”, “Delauny Triangulation”, “Marching Triangles”, “Lava Simulation” (Marie-Paul Cani: http://www-imagis.imag.fr/Membres/Marie-Paule.Cani/index.gb.html),,) etc.

[This message has been edited by Relic (edited 08-09-2002).]

If you want to see an implementation, look at the “Metaballs” project on my website. This uses marching cubes to display an isosurface through a field with points influencing the field with an inverse square formula.
However, the marching cubes part is separate and could easily be used to display an isosurface through any scalar field.
http://users.ox.ac.uk/~univ1234

Originally posted by jrbcast:
[b]Hi,

I wanna build a program to extract isosurfaces from data collections…[/b]

Seed-based extraction of connected isosurfaces is a lot faster than marching through the entire volume. See:
Octree-Based Decimation of Marching Cubes Surfaces, Shekar et.al.

I implemented this and it works well. See: http://members.tripod.com/~clunis_immensus/free3d/
and http://members.tripod.com/~clunis_immensus/software/software.html

Karthik Balasubramaniam
free3dee@hotmail.com

Just a question: is the marching cubes algorithm still patented?

I thought you should pay the author (whoever that is…) a fee if you are planning to use it in your software.

Regards.

Eric