For more information see https://vision.in.tum.de/research/robotvision/replanning
If you use this code, please cite the respective publications:
- Real-Time Trajectory Replanning for MAVs using Uniform B-splines and 3D Circular Buffer, V. Usenko, L. von Stumberg, A. Pangercic, D. Cremers, In arXiv:1703.01416, 2017
The system has been tested with Ubuntu 16.04 and ROS Kinetic.
Follow the tutorials to install ROS Kinetic and to set up catkin workspace.
Install additional dependencies:
sudo apt-get install libeigen3-dev libsuitesparse-dev protobuf-compiler libnlopt-dev ros-kinetic-octomap ros-kinetic-octomap-rviz-plugins ros-kinetic-octomap-ros ros-kinetic-sophus
Navigate to the source folder of your catkin workspace, download and build the software:
cd ~/catkin_ws/src
git clone https://github.com/vsu91/ewok.git
cd ewok
git submodule init
git submodule update
cd ../../
catkin_make
Some of the provided examples (trajectory_replanning_big_forest.launch) depend on the forest_gen dataset. With the above commands it should already be downloaded as a git submodule. Please check https://github.com/ethz-asl/forest_gen for more information about the dataset.
In separate terminal windows:
Start roscore:
roscore
Start visualization:
roscd ewok_simulation/rviz/
rviz -d simulation.rviz
Launch the system and simulator:
roslaunch ewok_simulation trajectory_replanning_simulation.launch
Now you should be able to see Rviz visualization of the system running in simulator. Due to performance reasons GUI of the Gazebo simulator is disabled by default.
To enable it, change the following parameter in ewok_simulation/launch/trajectory_replanning_simulation.launch
:
<arg name="gui" default="true"/>
In separate terminal windows:
Start roscore:
roscore
or, if you already have it running, make sure you are not using simulated time:
rosparam set use_sim_time false
Start visualization:
roscd ewok_ring_buffer/rviz/
rviz -d ring_buffer.rviz
Run benchmarking script. It will download the dataset, run the computations and show the plots with insertion times:
roscd ewok_ring_buffer/benchmarking/
./benchmark.py
In separate terminal windows:
Start roscore:
roscore
or, if you already have it running, make sure you are not using simulated time:
rosparam set use_sim_time false
Start visualization:
roscd ewok_optimization/rviz/
rviz -d optimization_example.rviz
Run optimization example:
rosrun ewok_optimization spline_optimization_example3
Ewok was developed at the Technical University of Munich. The open-source version is licensed under the GNU Lesser General Public License Version 3 (LGPLv3).