krishauser / Klampt

Kris' Locomotion and Manipulation Planning Toolkit
BSD 3-Clause "New" or "Revised" License
378 stars 96 forks source link

is it possible to do planning for a point robot via Klampt? #125

Closed muk465 closed 2 years ago

muk465 commented 2 years ago

Hi guys I want to plan a path for a point robot using rrt on a 3d image(3d numpy array) is it possible to do this using klampt? because when i was reading documentation i got the feeling that this library only supports manipulator kind of robots.Kindly help

krishauser commented 2 years ago

Yes, you may plan for point robots. In Python there exists a base configuration space class CSpace and a motion planning class MotionPlan. You would subclass CSpace to add your hooks: http://motion.cs.illinois.edu/software/klampt/latest/pyklampt_docs/klampt.plan.cspace.html

One of the exercises has you doing exactly this. https://github.com/krishauser/Klampt-examples/tree/master/Python3/exercises/motionplanning

krishauser commented 2 years ago

Closed and moved to gitq