vote up 3 vote down star
1

I'm hoping to find a simple library that can take a series of 2 dimensional points and give me back a larger series of points that model the curve. Basically, I want to get the effect of curve fitting like this sample from JFreeChart:

alt text

The problem with JFreeChart is that the code does not provide this type of api. I even looked at the source and the algorithm is tightly coupled to the actual drawing.

flag

60% accept rate

3 Answers

vote up 1 vote down

curvefitting.sourceforge.net looks like it may be suitable. It offers a variety of methods (cubic spline, polynomial etc).

link|flag
I found that one too, but the documentation is all in german, and the source code isn't provided. – Russell Leggett May 18 at 15:21
I'd hope the source code is provided, since it's on Sourceforge. Have you looked at the source code repository ? – Brian Agnew May 18 at 15:24
one would think, but I browsed cvs and there are no files there – Russell Leggett May 18 at 15:28
2  
It's in the .jar file. Doesn't appear to be in the CVS repository though :-( – Brian Agnew May 18 at 15:29
Sorry. Just saw your additional comment re. CVS. Can't help you on the German, but I'd hope (!) the Java is relatively clear – Brian Agnew May 18 at 15:30
show 1 more comment
vote up -1 vote down

I've never done it, but a quick Google search revealed that Bezier curves are implemented in http://java.sun.com/j2se/1.5.0/docs/api/java/awt/geom/QuadCurve2D.Double.html

Then, you can getPathIterator() from this curve and with that, according to what documentation says, you get the "coordinates of shape boundaries", which, i suppose, is what you are looking for.

link|flag
No, he does not want to do this. He needs to compute control points of the curve using spline interpolation or some heuristics method. – Matej May 19 at 7:25
I suggest you better read en.wikipedia.org/wiki/Spline_(mathematics) and en.wikipedia.org/wiki/B%C3%A9zier_curve Bezier curves is one of the ways to model these curves. By having the coordinates of points on this curve, he effectively gets what he wants. – Zilupe May 19 at 7:43
vote up 0 vote down check

After more searching into splines, I found this little bit of Java code for doing them in an applet. The source is provided and looks pretty straightforward. I should be able to adapt it to my needs. It is especially nice because the cubics it generates are objects I can easily use for my own needs and separate it from the paint function.

Thanks "lambert"!

link|flag

Your Answer

Get an OpenID
or

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