I'm searching for a way to smooth coordinates. For example, given the coordinates
co = [(1,10), (2,10), (3,9), (3,8), (3,7), (2,6), ...]
I would like smooth them like this:
What algorithm or library should I use?
Is this possibly related Smooth a trajectory with splrep?