hungpham2511 / toppra

robotic motion planning library
https://hungpham2511.github.io/toppra/index.html
MIT License
625 stars 170 forks source link

Additional information about the generated trajectory #61

Closed mrunaljsarvaiya closed 5 years ago

mrunaljsarvaiya commented 5 years ago

Is there a way to determine velocity, acceleration and time information for a specific input waypoint? For example, a evaluation function (similar to jnt_traj.eval()), that instead of taking as an input a time step, takes a waypoint ?

hungpham2511 commented 5 years ago

Yes this information can be retrieved from the output of the algorithm. In fact the velocities at each waypoint are used to compute the final retimed trajectory.

mrunaljsarvaiya commented 5 years ago

Thanks!