Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
6answers
1k views

Curve fitting unsorted points on a plane

Question: How do you fit a curve to points on a plane if they aren't single valued? For the example shown, how would one fit a curve (like the black one) to the noisy blue data? It's similar to ...
11
votes
3answers
692 views

Library for generating cubic spline trajectories (not interpolation)?

A little background. I have a simulation that uses cubic splines for 1D trajectories. In this context, a cubic spline specifies an object's position, velocity, acceleration, and jerk as a function of ...
10
votes
2answers
1k views

Intersection between bezier curve and a line segment

I am writing a game in Python (with pygame) that requires me to generate random but nice-looking "sea" for each new game. After a long search I settled on an algorithm that involves Bezier curves as ...
6
votes
1answer
162 views

Creating continuous splines / Making a smooth transition between splines

I'm working on a project that involves creating a spline from a defined set of points (tens of thousands of points). I first create a spline for the first 1000 points and simulate "driving" on that ...
6
votes
3answers
545 views

What algorithm determines the nearness of a point to a Bezier curve?

I wish to determine when a point (mouse position) in on, or near a curve defined by a series of B-Spline control points. The information I will have for the B-Spline is the list of n control points ...
5
votes
3answers
780 views

How to draw a continuous curved line from 3 given points at a time

I am trying to draw a continuous curved line in flash. There are many methods but none of the ones I have found so far quite fit my requirements. First of all, I want to use the flash graphic api's ...
5
votes
2answers
227 views

A way to draw equidistant curve

I posted this question on mathoverflow but I want to know your opinion regarding this also. What I want to do is to draw a curve that is always at a certain distance from the normal to the surface of ...
5
votes
4answers
1k views

Smoothing a hand-drawn curve

I've got a program that allows users to draw curves. But these curves don't look nice - they look wobbly and hand-drawn. So I want an algorithm that will automatically smooth them. I know there are ...
5
votes
2answers
2k views

Math: Ease In, ease Out a displacement using Hermite curve with time constraint

I'm trying to write a method that interpolates from 0 to x (position of an object in one dimension) over time using acceleration at the beginning and deceleration at the end (ease out / ease in) with ...
5
votes
5answers
1k views

Closest point on a cubic Bezier curve?

How can I find the point B(t) along a cubic Bezier curve that is closest to an arbitrary point P in the plane?
5
votes
2answers
6k views

Catmull-Rom splines - how do they work?

From this site which seems to have the most detailed information about catmull-rom splines: http://www.mvps.org/directx/articles/catmull/ it makes mention of needing four points to create the spline. ...
4
votes
1answer
97 views

How do I get the slopes of an interpolation at regular time points on a cumulative sum plot?

Over at cross validated I asked a question about analyzing data by date but not wanting to generate spurious spikes and troughs by binning data by the month. For example if one pays a bill on the last ...
4
votes
1answer
868 views

how to draw smooth curve through N points using javascript HTML5 canvas?

For a drawing application I'm saving the mouse movement coordinates to an array then drawing them with lineTo. The resulting line is not smooth. How can I produce a single curve between all the ...
4
votes
1answer
234 views

Drawing a curve through a set of N points, where N>2

I need to draw a curve smoothly through N points with N>2 with Javascript. I am currently using the bezierCurveTo() within an html5 canvas object. I've invested a good deal of time into trying to find ...
4
votes
1answer
211 views

How can I use spline() with ggplot?

I would like to fit my data using spline(y~x) but all of the examples that I can find use a spline with smoothing, e.g. lm(y~ns(x), df=_). I want to use spline() specifically because I am using ...
4
votes
3answers
1k views

Akima interpolation of an array of doubles

Assuming I have an array of doubles, what's a good algorithm to sample this series using Akima interpolation? I'm too stupid to translate that mathematical description into code. // values is an ...
4
votes
3answers
453 views

How many points for a spline

H community, 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 ...
4
votes
3answers
2k views

The intersection point between a spline and a line

I'm trying to find a way to calculate the intersection between a b-spline and a straight line. So far Google hasn't been much help.
3
votes
2answers
301 views

determine trajectory for object followers - curve of pursuit

I have started to develop unit trajectories for a game server and for now I'm trying to retrieve the position of a unit at a given time. It is easy when the trajectory is just a straight line, but it ...
3
votes
3answers
306 views

Create smooth line to join N points in 3 dimensions

I have N points in 3-dimensional space. I need to join them using a line. However, if I do that using a simple line, it is not smooth and looks ugly. My current approach is to use a Bezier curve, ...
3
votes
1answer
167 views

Compute a point on a spline surface

I am working on a control algorithm to be run on an embedded system. My programming language is C and the system will be pretty tightly constrained in terms of memory and processing power. I have a ...
3
votes
2answers
162 views

How to apply spline() to a large dataframe

I am a newbie to R and I am trying to apply smooth.spline() to a large dataframe. I've looked at the related threads ("Apply a list of n functions to each row of a dataframe,", "How to apply a spline ...
3
votes
2answers
671 views

Finding points on a bezier curve based on distance from another point

So I have a 3D cubic bezier curve and a start point found anywhere along the curve and need to find a second point further down the curve that is a specific worldspace distance (not arclength ...
3
votes
2answers
1k views

Calculate a bezier spline to get from point to point

I have 2 points in X,Y + Rotation and I need to calculate a bezier spline (a collection of quadratic beziers) that connects these 2 points smoothly. (see pic) The point represents a unit in a game ...
3
votes
2answers
3k views

Are there any good libraries for solving cubic splines in C++?

I'm looking for a good C++ library to give me functions to solve for large cubic splines (on the order of 1000 points) anyone know one?
3
votes
4answers
580 views

.NET Library to draw routed lines avoiding obstacles

I've created a workflow/flowchart style designer for something. At the moment it is using relatively simple Bezier curve lines to connect up the various end points of the "blocks" on the workflow. ...
2
votes
1answer
103 views

Evaluating 3d splines exported from max in a C++ program

My C++ program requires access to 3D splines that have been constructed in 3ds Max (2011). I have found a simple maxscript that exports these splines as XML files - an example as follows: <spline ...
2
votes
0answers
220 views

Spline interpolation: cubic vs. piecewise Hermite with C2 continuity [closed]

I didn't get much of a bite in math.stackexchange.com, so I'll try here... Recently, I've been looking to find the interpolating cubic spline of some data that I have. I think I have a pretty good ...
2
votes
1answer
324 views

Swing: detect mouse move on generalpath

I'm drawing some splines using GeneralPath as follow: GeneralPath path = new GeneralPath(); path.moveTo(x0, y0); path.curveTo(x0 + 100, y0, x1 - 100, y1, x1, y1); ((Graphics2D) g).draw(path); ...
2
votes
3answers
262 views

how can I evaluate the derivative of a spline function in R?

R can generate a spline function using splinefun() in the splines library. However, I need to evaluate this function at its first and second derivatives. Is there a way to do this? for example ...
2
votes
5answers
339 views

How do I draw a vermiculated line in Java?

I know how to draw straight lines but could I draw a line which (around a straight line i.e.)? Excuse me, I do not speak English very well to describe this more detailed ;-) Edit: Hey sorry for my ...
2
votes
1answer
470 views

How to create a cubic bezier curve when given N points in 3D?

So I need to find out where the control points would be for a cubic bezier curve when only knowing points on the curve, the points can lie in 3D. It would be ideal if I could do this for any number ...
2
votes
5answers
131 views

(kind of) rotating and slicing elements of a container in C++

I have a std::vector that holds a Point struct (x,y,z and some other non-pointer types). These points are control points for drawing a bspline curve. I'm not having trouble drawing the curve, but ...
2
votes
1answer
2k views

Python Least-Squares Natural Splines

I am trying to find a numerical package which will fit a natural spline which minimizes weighted least squares. There is a package in scipy which does what I want for unnatural splines. import ...
2
votes
2answers
762 views

Drawing a Smooth Line from Tablet Input

As the user drags their stylus across the tablet, you receive a series of coordinates. You want to approximate the pen's path with a smooth line, trailing only a few sample points behind it. How ...
2
votes
2answers
2k views

Connecting Catmull-Rom splines together and calculating its length?

I'm trying to create a class which takes in any number of points (position and control) and creates a catmull-rom spline based on the information given. What I'm doing - and I'm really unsure if this ...
2
votes
3answers
856 views

Turn a N-Ary B-Spline into a sequence of Quadratic or Cubic B-Splines

I am doing some TTF work for MOSA (the correlating body between all the C# operating systems). Me and Colin Burn are currently working on getting some TTF code working (less me these days :) - he made ...
1
vote
1answer
74 views

Cubic Hermite Spline behaving strangely

I'm attempting to draw a graph using Cubic Hermite Splines. I grabbed the simple code to do so from this interpolation methods page. Here is my code: private float HermiteInterpolate(float y0, float ...
1
vote
2answers
80 views

Get X from Y with MATLAB Spline

I have two vectors in MATLAB, X and Y. Y is a function of X but X is not a function of Y. I would like to get an X value from the spline(X,Y) for a given Y value. How can I do this? I tried using ...
1
vote
1answer
166 views

(Cubic) Spline [MATLAB]

I am using the "interp1" function in Matlab to interpolate some missing data in a signal, and it works like a charm. But I would like to know how the function works. I checked the code of the ...
1
vote
1answer
357 views

Cubic Spline Program

I'm trying to write a cubic spline interpolation program. I have written the program but, the graph is not coming out correctly. The spline uses natural boundary conditions(second dervative at ...
1
vote
1answer
80 views

How to obtain the gradient of a scipy interpolant directly?

I have a largish 3D numpy array of scalar values (OK call it a "volume" if you must). I want to interpolate a smooth scalar field over this at a succession of irregular, not all known up-front ...
1
vote
0answers
62 views

Spline interpolation extension

I would like to use the Arc GIS spline interpolation tool to interpolate rasters from point values. I have Arc Map 10 but not the spatial analyst add-on. Does anyone know of other extensions ...
1
vote
1answer
295 views

Image Warp Filter - Algorithm and Rasterization

I'd like to implement a Filter that allows resampling of an image by moving a number of control points that mark edges and tangent directions. The goal is to be able to freely transform an image as ...
1
vote
1answer
564 views

catmull-rom splines for Android

I'm trying to find a way to implement catmull-rom splines on the android platform for the purpose of smoothly drawing a line through n points. Ideally I would be able to adapt cubic beziers via the ...
1
vote
1answer
1k views

Spline smoothing algorithm in C

I work in Engineering in an industrial plant, for some of our online modeling we look at high frequency output data from thermocouples, sensors etc by nature this data is subject to a 'noise' effect, ...
1
vote
1answer
1k views

Cubic spline in matlab

i have trouble getting a matlab code to work properly! i found a cubic spline code in matlab to give me the interpolated polynomial. and i simply give it an example to work: Xi = [0 0.05 0.1] Fi = ...
1
vote
1answer
127 views

Problem with spline method = 'monoH.FC''

I am interested in using the monotone spline, but I get an error when R tries to use it. I am using R 2.12.0, and the method 'monoH.FC' says that it has been supported since 2.8.0 Reproducible ...
1
vote
3answers
632 views

How to create a smooth path for characters to follow in 2D game

I am creating an iPhone / Android tower-defense type game were the enemy units must follow a predetermined path, which will be the same for the iPhone and Android versions. I had initially thought ...
1
vote
1answer
571 views

Cubic Spline class for Obj C or C?

I need to use natural cubic spline interpolation in an iPhone app. Does anyone know of a class for Obj C or C that resembles this: http://www.ee.ucl.ac.uk/~mflanaga/java/CubicSpline.html ...

1 2