Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pythonrobotics | 18,812 | 4 days ago | 14 | other | Python | |||||
Python sample codes for robotics algorithms. | ||||||||||
Robotics Coursework | 1,762 | 2 years ago | 5 | unlicense | ||||||
🤖 Places where you can learn robotics (and stuff like that) online 🤖 | ||||||||||
Robotopia | 461 | 4 years ago | 15 | mit | JavaScript | |||||
:robot: Introducing kids to coding with tiny virtual robots! | ||||||||||
Chat | 443 | 2 | 3 years ago | 73 | July 31, 2018 | 2 | mit | Python | ||
基于自然语言理解与机器学习的聊天机器人,支持多用户并发及自定义多轮对话 | ||||||||||
Libmultirobotplanning | 426 | 8 months ago | 8 | mit | C++ | |||||
Library with search algorithms for task and path planning for multi robot/agent systems | ||||||||||
Ahrs | 380 | 14 days ago | 6 | September 29, 2021 | 33 | mit | Python | |||
Attitude and Heading Reference Systems in Python | ||||||||||
Cpprobotics | 266 | 2 years ago | 3 | mit | C++ | |||||
Header-only C++ library for robotics, control, and path planning algorithms. Work in progress, contributions are welcome! | ||||||||||
Mms | 197 | 8 days ago | 2 | mit | C++ | |||||
A Micromouse simulator: write and test maze-solving code without a physical robot | ||||||||||
Quadruped_ctrl | 184 | a year ago | 8 | mit | C++ | |||||
MIT mini cheetah quadruped robot simulated in pybullet environment using ros. | ||||||||||
Motion_planning | 174 | 4 months ago | mit | Jupyter Notebook | ||||||
Robot path planning, mapping and exploration algorithms |
This repo has the implementation of basic forward/inverse kinematics, and the RRT path planning for the Franka Robot Arm.
Kinematics: It contains the URDF & DH forward kinematics and the inverse kinematics algorithm for the Franka Robot Arm. It also has the implementation of the separating axis theorem to avoid collision.
Path Planning: It contains the Rapidly-exploring Random Trees (RRT) for the Franka robot to reach the target pose without collision with the obstacles. It also has the implementation of the planning with constraints using Projection Sampling.
This is the rViz Visualization of Franka robot, surrounding walls, and an obstacle. You will see this visualization after RRT has found a plan
The Constrained RRT planning algorithm is as below:
For Ubuntu 16.04:
Install ROS Kinetic on your computer following instructions here: [http://wiki.ros.org/ kinetic/Installation/Ubuntu.](http://wiki.ros.org/ kinetic/Installation/Ubuntu. ) (Make sure to install the Desktop-Full Install version of ROS Kinetic.)
Install libfranka and franka_ros using the following command:
sudo apt install ros-kinetic-libfranka ros-kinetic-franka-ros
Install all requirements.
pip install -r requirements.txt
Change the path argument in visualize.launch to the path to your working folder.