• Stars
    star
    949
  • Rank 48,153 (Top 1.0 %)
  • Language
    C++
  • License
    BSD 3-Clause "New...
  • Created almost 5 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

3D Trajectory Planner in Unknown Environments

FASTER: Fast and Safe Trajectory Planner for Navigation in Unknown Environments

Accepted for publication in the IEEE Transactions on Robotics (T-RO)

Finalist to the Best Paper Award on Safety, Security, and Rescue Robotics (IROS 2019)

UAV Ground Robot
IROS 2019: FASTER: Fast and Safe Trajectory Planner for Flights in Unknown Environments IROS 2019: FASTER: Fast and Safe Trajectory Planner for Flights in Unknown Environments
IROS 2019: FASTER: Fast and Safe Trajectory Planner for Flights in Unknown Environments IROS 2019: FASTER: Fast and Safe Trajectory Planner for Flights in Unknown Environments

Citation

When using FASTER, please cite the following journal paper (pdf, video)

@article{tordesillas2021faster,
  title={{FASTER}: Fast and Safe Trajectory Planner for Navigation in Unknown Environments},
  author={Tordesillas, Jesus and How, Jonathan P},
  journal={IEEE Transactions on Robotics},
  year={2021},
  publisher={IEEE}
}

The conference version is here:

@inproceedings{tordesillas2019faster,
  title={{FASTER}: Fast and Safe Trajectory Planner for Flights in Unknown Environments},
  author={Tordesillas, Jesus and Lopez, Brett T and How, Jonathan P},
  booktitle={2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
  year={2019},
  organization={IEEE}
}

General Setup

FASTER has been tested with

  • Ubuntu 16.04/ROS Kinetic
  • Ubuntu 18.04/ROS Melodic

Other ROS versions may require some minor changes, feel free to create an issue if you have any problems. The Gurobi versions tested are Gurobi 8.1, Gurobi 9.0, and Gurobi 9.1.

Install the Gurobi Optimizer. You can test your installation typing gurobi.sh in the terminal. Have a look at this section if you have any issues.

Install the following dependencies:

sudo apt-get install ros-"${ROS_DISTRO}"-gazebo-ros-pkgs ros-"${ROS_DISTRO}"-mavros-msgs ros-"${ROS_DISTRO}"-tf2-sensor-msgs
python -m pip install pyquaternion

Create a workspace, and clone this repo and its dependencies:

mkdir ws && cd ws && mkdir src && cd src
git clone https://github.com/mit-acl/faster.git
wstool init
wstool merge ./faster/faster/install/faster.rosinstall

In the following, remember (once the workspace is compiled) to add this to your ~/.bashrc:

source PATH_TO_YOUR_WS/devel/setup.bash

Instructions to use FASTER with an aerial robot:

Compile the code:

wstool update -j8
cd ..
catkin config -DCMAKE_BUILD_TYPE=Release
catkin build

And finally open 5 terminals and execute these commands:

roslaunch acl_sim start_world.launch
roslaunch acl_sim perfect_tracker_and_sim.launch
roslaunch global_mapper_ros global_mapper_node.launch
roslaunch faster faster_interface.launch
roslaunch faster faster.launch

The blue grid shown in Rviz is the unknown space and the orange one is the occupied-known space. Now you can click Start in the GUI, and then, in RVIZ, press G (or click the option 2D Nav Goal on the top bar of RVIZ) and click any goal for the drone.

NOTE (TODO): Right now the radius of the drone plotted in Gazebo (which comes from the scale field of quadrotor_base_urdf.xacro) does not correspond with the radius specified in faster.yaml.

Instructions to use FASTER with a ground robot:

IMPORTANT NOTE: There are some important differences on the performance of the ground robot when using the Gazebo version that comes with ROS Kinetic and the one that comes with ROS Melodic. To achieve a good tracking error (like the one shown here), you may have to tune the gains of the controller depending on the specific verion of ROS/Gazebo that you are using.

Install the following dependencies:

sudo apt-get install ros-"${ROS_DISTRO}"-control-toolbox ros-"${ROS_DISTRO}"-ros-control ros-"${ROS_DISTRO}"-robot-localization ros-"${ROS_DISTRO}"-lms1xx ros-"${ROS_DISTRO}"-interactive-marker-twist-server ros-"${ROS_DISTRO}"-hector-gazebo-plugins ros-"${ROS_DISTRO}"-move-base ros-"${ROS_DISTRO}"-ros-control ros-"${ROS_DISTRO}"-ros-controllers ros-"${ROS_DISTRO}"-pointgrey-camera-description ros-"${ROS_DISTRO}"-hardware-interface ros-"${ROS_DISTRO}"-message-to-tf ros-"${ROS_DISTRO}"-gazebo-ros-control

Then download the ground_robot-specific packages and compile the repo:

wstool merge ./faster/faster/install/faster_ground_robot.rosinstall
wstool update -j8
cd ..
catkin config -DCMAKE_BUILD_TYPE=Release
catkin build

Then, in faster.yaml, change these parameters:

drone_radius: 0.5  #[m]

z_max: 0.5         #[m] 
z_ground: -0.2

v_max: 1.4         #[m/s]  
a_max: 1.4         #[m/s2] 
j_max: 5.0         #[m/s3]

is_ground_robot: true  

And finally open 4 terminals and execute these commands

roslaunch faster ground_robot.launch
roslaunch global_mapper_ros global_mapper_node.launch quad:=JA01
roslaunch faster faster_interface.launch quad:=JA01 is_ground_robot:=true
roslaunch faster faster.launch quad:=JA01

Now you can click Start in the GUI, and then, in RVIZ, press G (or click the option 2D Nav Goal on the top bar of RVIZ) and click any goal for the ground robot.

Architecture:

For the aerial robot, the option 3 is provided (a perfect tracker and a Gazebo simulation to obtain the depth). To make the simulation faster, the physics engine of Gazebo is disabled using disable_physics.cpp of acl-gazebo.

For the ground robot, the option 2 is provided (a controller, and a Gazebo simulation with both dynamics and depth (using the multi_jackal package)

How do I use FASTER with a real robot?

To run the mapper, you simply need to run the node that publishes the depth image of the camera (for example using realsense-ros if you are using an Intel RealSense camera). After launching this node, find the name of the topic of the depth image (by doing rostopic echo), and finally put that name on the launch file of the mapper.

As shown in the diagram above, the UAV should subscribe to the Goal message published by FASTER. The estimator (or the motion capture) should then publish the current state of the UAV as a State message. If you are using a ground robot, you need to publish a nav_msgs/Odometry message (see this), and it will be converted directly to a State message.

Credits:

This package uses code from the JPS3D and DecompROS repos (included in the thirdparty folder), so credit to them as well.

Issues when installing Gurobi:

If you find the error:

β€œgurobi_continuous.cpp:(.text.startup+0x74): undefined reference to
`GRBModel::set(GRB_StringAttr, std::__cxx11::basic_string<char,
std::char_traits<char>, std::allocator<char> > const&)'”

The solution is:

cd /opt/gurobi800/linux64/src/build  #Note that the name of the folder gurobi800 changes according to the Gurobi version
sudo make
sudo cp libgurobi_c++.a ../../lib/

Issues with other possible errors:

You can safely ignore these terminal errors:

  • Error in REST request (when using ROS Melodic)
  • [ERROR] [...]: GazeboRosControlPlugin missing <legacyModeNS> while using DefaultRobotHWSim, defaults to true. (when using the ground robot)
  • [ERROR] [...]: No p gain specified for pid. Namespace: /gazebo_ros_control/pid_gains/front_left_wheel. (when using the ground robot)

More Repositories

1

cadrl_ros

ROS package for dynamic obstacle avoidance for ground robots trained with deep RL
Python
572
star
2

mader

Trajectory Planner in Multi-Agent and Dynamic Environments
C++
479
star
3

gym-collision-avoidance

OpenEdge ABL
246
star
4

clipper

graph-theoretic framework for robust pairwise data association
C++
219
star
5

panther

Perception-Aware Trajectory Planner in Dynamic Environments
C++
187
star
6

dpgo

Distributed Pose Graph Optimization
C++
181
star
7

mppi_numba

A GPU implementation of Model Predictive Path Integral (MPPI) control that uses a probabilistic traversability model for planning risk-aware trajectories.
Jupyter Notebook
179
star
8

rl_collision_avoidance

Training code for GA3C-CADRL algorithm (collision avoidance with deep RL)
Python
118
star
9

rmader

Decentralized Multiagent Trajectory Planner Robust to Communication Delay
C++
72
star
10

minvo

Simplexes with Minimum Volume Enclosing Polynomial Curves
MATLAB
71
star
11

aclswarm

MIT ACL distributed formation flying using multirotors
C++
67
star
12

nfl_veripy

Formal Verification of Neural Feedback Loops (NFLs)
Python
63
star
13

dpgo_ros

ROS wrapper for distributed pose graph optimization
C++
59
star
14

deep_panther

C++
51
star
15

clear

CLEAR algorithm for multi-view data association
MATLAB
35
star
16

planning

List of planning algorithms developed at MIT-ACL
34
star
17

puma

PUMA: Fully Decentralized Uncertainty-aware Multiagent Trajectory Planner with Real-time Image Segmentation-based Frame Alignment
C++
27
star
18

fastsam_ros

ROS wrapper for FastSAM, with docker
Python
17
star
19

separator

Linear separability (via planes) of two sets of 3D points
C++
12
star
20

dc2g

Planning Beyond the Sensing Horizon Using a Learned Context
Python
10
star
21

gym-minigrid

Python
10
star
22

SOS-Match

JavaScript
10
star
23

yolov7_ros

ROS wrapper for YOLOv7, with docker
Python
9
star
24

dc2g_public

Deep Cost-to-Go Planning Algorithm (IROS '19)
9
star
25

iscp_path_planner

Iterative sequential convex programming path planner, from Steven and Mark's ICRA 2015 paper
Python
4
star
26

panther_extra

Python
1
star
27

murp-datasets

Jupyter Notebook
1
star
28

motlee

Multiple Object Tracking with Localization Error Elimination
Python
1
star
29

mit-acl.github.io

SCSS
1
star