Skip to content

Instantly share code, notes, and snippets.

@lecho
Created June 18, 2018 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lecho/34ff73b2b49e0d7afb0b0d75fc55d23c to your computer and use it in GitHub Desktop.
Save lecho/34ff73b2b49e0d7afb0b0d75fc55d23c to your computer and use it in GitHub Desktop.
import numpy
import matplotlib.pyplot as plt
def interpolateCatmulRomeSegment(P0, P1, P2, P3, nPoints=10):
"""
P0, P1, P2, and P3 should be (x,y) point pairs that define the Catmull-Rom spline.
nPoints is the number of points to include in this curve segment.
"""
# Convert the points to numpy so that we can do array multiplication
P0, P1, P2, P3 = map(numpy.array, [P0, P1, P2, P3])
# Calculate t0 to t4
t0 = 0
t1 = calculateT(t0, P0, P1)
t2 = calculateT(t1, P1, P2)
t3 = calculateT(t2, P2, P3)
# Only calculate points between P1 and P2
t = numpy.linspace(t1,t2,nPoints)
# Reshape so that we can multiply by the points P0 to P3
# and get a point for each value of t.
t = t.reshape(len(t),1)
A1 = (t1-t)/(t1-t0)*P0 + (t-t0)/(t1-t0)*P1
A2 = (t2-t)/(t2-t1)*P1 + (t-t1)/(t2-t1)*P2
A3 = (t3-t)/(t3-t2)*P2 + (t-t2)/(t3-t2)*P3
B1 = (t2-t)/(t2-t0)*A1 + (t-t0)/(t2-t0)*A2
B2 = (t3-t)/(t3-t1)*A2 + (t-t1)/(t3-t1)*A3
curve = (t2-t)/(t2-t1)*B1 + (t-t1)/(t2-t1)*B2
return curve
def calculateT(ti, Pi, Pj, alpha=0.5):
xi, yi = Pi
xj, yj = Pj
return ( ( (xj-xi)**2 + (yj-yi)**2 )**0.5 )**alpha + ti
def interpolateCatmulRomeSpline(points):
"""
Calculate Catmull Rom for a chain of points and return the combined curve.
"""
pointsLen = len(points)
# The curve curve(C) will contain an array of (x,y) points.
curve = []
for i in range(pointsLen-3):
segment = interpolateCatmulRomeSegment(points[i], points[i+1], points[i+2], points[i+3])
curve.extend(segment)
return curve
def main():
# Define a set of points for curve to go through
points = [[0,1.5],[2,2],[3,1],[4,0.5],[5,1],[6,2],[7,3]]
# Calculate the Catmull-Rom splines through the points
c = interpolateCatmulRomeSpline(points)
# Convert the Catmull-Rom curve points into x and y arrays and plot
x,y = zip(*c)
plt.plot(x,y)
# Plot the control points
px, py = zip(*points)
plt.plot(px,py,'or')
plt.show()
if __name__ == "__main__": main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment