vote up 2 vote down star
2

I have an elevation map stored as a raster. I'd like to fit a smooth "vector" curve to the contours of constant elevation. In my application, the data are actually geographic elevations, but the problem could be generalized to any function of two variables.

I can produce another raster with anti-aliased contour lines, and use that as input to the vector-fitting process, if that helps.

This question is similar, but I'm looking for a free library that I can use in my Java application, or an explanation of the algorithm I (a non-mathematician) can implement myself. Also, in my case, I've already found all of the "edges" I care about—I just need to vectorize them.

Another question touches on mine, but the poster never returned to explain how he implemented the final step, which is the part I'm missing.

flag

80% accept rate
Unfortunately googling mostly ends up with pages on how to do this in ARCgis or Mapview. – Paul Tomblin Feb 10 at 18:14

3 Answers

vote up 0 vote down

It's the same as converting any other raster object into a vector object, only with another dimension.

Think about how this works with 2D images (do some research) then extrapolate the techniques into 3D.

-Adam

link|flag
vote up 1 vote down

MATLAB does this with a contour plot: see the contour function -- it produces contour line data from a grid of f(x,y) data. I don't know much about the algorithm they use (they do have a page which discusses it) but maybe worth looking at the Octave equivalent.

there's a thesis on contour plotting and a CodeProject page based on the thesis.

link|flag
vote up 1 vote down

You probably want to fit to closed bezier splines (curves).

There is a page with a Java applet that does such fitting. Take a look at their (uncommented, bleh) PSegment.java

If that doesn't do the job well enough, Fitting B-Spline Curves to Point Clouds by Squared Distance Minimization should be overkill for the task.

For more info, Google (Scholar) searches for things like "b-spline fitting" and "closed bezier spline" should help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.