How many points for a spline - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T20:59:35Zhttp://stackoverflow.com/feeds/question/986571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/986571/how-many-points-for-a-spline3How many points for a splineXelluloid2009-06-12T13:12:47Z2009-06-17T04:00:35Z
<p>H community,</p>
<p>I wanted to ask if there is an algorithm for choosing the optimal amount of support points for creating a bezier spline in order to make it look smooth and reduce the error. If there is such an algorithm how fast is the algorithm?</p>
<p>Thanks in advance</p>
<p>Sebastian</p>
http://stackoverflow.com/questions/986571/how-many-points-for-a-spline/986604#9866041Answer by Luixv for How many points for a splineLuixv2009-06-12T13:19:30Z2009-06-12T13:19:30Z<p>I am not sure if I am understanding your question. Normally you have a fixed amount of points and you calculate the spline which interpolates that amount of points. </p>
<p>There is an article at the wikipedia about <a href="http://en.wikipedia.org/wiki/Spline%5F%28mathematics%29" rel="nofollow">spline</a> which might help you.</p>
http://stackoverflow.com/questions/986571/how-many-points-for-a-spline/986609#9866091Answer by Magnus Skog for How many points for a splineMagnus Skog2009-06-12T13:22:06Z2009-06-12T13:56:00Z<p>The smoothness doesn't have anything to do with the control points. The control points are only used for linear combination with the bspline basis functions. An arbitrary bspline segment always lies in the convex hull of the corresponding control points. It's the order of the bspline basis functions you are after.</p>
<p>So if you want smoothness, you should increase the order of the basis functions. Linear bsplines will only give linear segments.</p>
http://stackoverflow.com/questions/986571/how-many-points-for-a-spline/1005060#10050601Answer by J. Peterson for How many points for a splineJ. Peterson2009-06-17T04:00:35Z2009-06-17T04:00:35Z<p>Generally you don't want to work with Bezier curves of higher order than cubic. The evaluation and rendering gets slower as the order goes up. Cubic curves are also supported by most display libraries, higher orders you'll need to render yourself.</p>
<p>If you're trying to approximate data with Bezier curves, there's a whole host of approximation algorithms that reduce densely packed data to Bezier curves. If you're looking for a way to draw curves with many points, B-Splines curves may be a useful solution. These are easily converted to Bezier curve segments for rendering. See <a href="http://www.saccade.com/writing/graphics/KnotVectors.pdf" rel="nofollow">this paper</a> for a basic introduction to B-spline curves.</p>