Trying to implement motion planning algorithms like RRT (and its variants) for robotic arms.
- Git clone repo:
git clone https://github.com/logeshg2/motion_planning_pkg.git- Install dependencies:
pip3 install -r requirements.txt- Install mpkg:
pip3 install -e .- Differential Inverse Kinematics:
python3 examples/diff_ik_eg.py- RRT Star Planner (with and without collision objects):
# without collision objects
python3 examples/rrt_star_planner_eg.py
# with collision objects
python3 examples/rrt_star_planner_collision_eg.py