| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
| Name | Papers | Videos | Code | Main Group |
|---|---|---|---|---|
| NBVP | 2016 ICRA | git | ETHZ-ASL | |
| GBP | 2019 IROS, 2020 JFR | youtube, youtube2, youtube3 | Same with GBP2 | ETHZ-ASL+RSL / NTNU-ARL |
| GBP2 | 2022 ICRA | youtube | git | ETHZ-ASL+RSL / NTNU-ARL |
| MBP | 2020 ICRA | youtube, youtube2, youtube3 | git | ETHZ-ASL / NTNU-ARL |
| AEP | 2019 RAL | youtube | git | LiU-AIICS / KTH-RPL |
| UFOExplorer | 2022 RAL | youtube | git | KTH-RPL |
| FUEL | 2021 RAL | youtube | git | HKUST Aerial Robotics Group |
| DSVP | 2021 IROS | youtube | git | CMU Robotics Institute |
| TARE | 2021 RSS, 2021 ICRA | youtube | git | CMU Robotics Institute |
| Name | Papers | Videos | Code | Main Group |
|---|---|---|---|---|
| RHEM | 2017 ICRA, 2019 Autonomous Robots | youtube, youtube2 | git | NTNU-ARL |
| GLocal | 2021 RAL | youtube | git | ETHZ-ASL |
| Name | Papers | Videos | Code | Main Group |
|---|---|---|---|---|
| OIPP | 2020 RAL | youtube | git | ETHZ-ASL |
| PredRecon | 2023 ICRA (arXiv yet) | youtube | git | HKUST Aerial Robotics Group |
If you do not have docker yet, install it
curl -fsSL https://get.docker.com/ | sudo sh
sudo usermod -aG docker $USER
##### NVIDIA-Docker, GPU
distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \
&& curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - \
&& curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
sudo apt-get update
sudo apt-get install -y nvidia-docker2
sudo systemctl restart dockerGet the ready-to-go docker image with dockerfile
FROM ghcr.io/engcang/exploration_sota:v1.0
# nvidia-container-runtime
ENV NVIDIA_VISIBLE_DEVICES \
${NVIDIA_VISIBLE_DEVICES:-all}
ENV NVIDIA_DRIVER_CAPABILITIES \
${NVIDIA_DRIVER_CAPABILITIES:+$NVIDIA_DRIVER_CAPABILITIES,}graphics
USER ubuntu
WORKDIR /home/ubuntu
CMD /bin/bashGenerate a docker conatiner with run.sh file
#!/bin/sh
XSOCK=/tmp/.X11-unix
XAUTH=/tmp/.docker.xauth
touch $XAUTH
xauth nlist $DISPLAY | sed -e 's/^..../ffff/' | xauth -f $XAUTH nmerge -
docker run --runtime=nvidia --privileged --gpus all --rm -it \
--volume=$XSOCK:$XSOCK:rw \
--volume=$XAUTH:$XAUTH:rw \
--volume=$HOME:$HOME \
--shm-size=4gb \
--env="XAUTHORITY=${XAUTH}" \
--env="DISPLAY=${DISPLAY}" \
--env=TERM=xterm-256color \
--env=QT_X11_NO_MITSHM=1 \
--net=host \
exploration:latest
bashchmod +x run.sh
./run.shcd ~/
ls #see .sh files there
# NBVP
./nbvp.sh
# GBP
./gbp.sh
!!Then, click "Start planner" in Rviz
# MBP
./mbp.sh
!!Then, click "Start planner" in Rviz
# AEP
./aep_gazebo.sh
./aep.sh lidar #with lidar sensor
./aep.sh rgbd #with rgbd sensor
rosservice call /mavros/cmd/arming "value: true"
rosservice call /mavros/set_mode "base_mode: 0 custom_mode: 'OFFBOARD'"
# FUEL
./fuel.sh
!!Start with "2D Nav Goal" in Rviz
# DSVP
./dsvp_tare_sim.sh
./dsvp.sh
# TARE
./dsvp_tare_sim.sh
./tare.sh
# OIPP
./oipp.sh
rosservice call /planner/planner_node/toggle_running "data: true"cd ~/catkin_ws/src
git clone https://github.com/ethz-asl/rotors_simulator --recursive
rm -r rotors_simulator/rotors_description
rm -r rotors_simulator/rotors_gazebo
cd ~/catkin_ws
git clone https://github.com/engcang/exploration-algorithms
mv exploration-algorithms/rotors_description src/rotors_simulator/
mv exploration-algorithms/rotors_gazebo src/rotors_simulator/
catkin build -DCMAKE_BUILD_TYPE=Releasecd ~/catkin_ws/src
git clone https://github.com/ethz-asl/nbvplanner.git
cd nbvplanner
git submodule update --init --recursive
rm -r rotors # install it as above Section 1-2.
cd mav_comm && git pull origin mastercd ~/catkin_ws/src/nbvplanner/nbvplanner
wget -O CMakeLists.txt https://raw.githubusercontent.com/engcang/exploration-algorithms/main/nbvp/nbvplanner/CMakeLists.txt
cd ~/catkin_ws/src/nbvplanner/interface_nbvp_rotors
wget -O CMakeLists.txt https://raw.githubusercontent.com/engcang/exploration-algorithms/main/nbvp/interface_nbvp_rotors/CMakeLists.txt
cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releasesudo apt install python-catkin-tools \
libgoogle-glog-dev \
ros-melodic-joy \
ros-melodic-twist-mux \
ros-melodic-interactive-marker-twist-server \
ros-melodic-octomap-ros
cd catkin_ws
git clone https://github.com/ntnu-arl/gbplanner_ros.git -b gbplanner2
wstool init
wstool merge ./gbplanner_ros/packages_ssh.rosinstall
wstool update
rm -r src/sim/rotors_simulator #install it as above Section 1-2.cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releasecd ~/catkin_ws
git clone https://github.com/ntnu-arl/gbplanner_ws.git
cd gbplanner_ws
git checkout origin/melodic
wstool init
wstool merge packages_https.rosinstall
wstool update
mv gbplanner_ws/src/* ~/catkin_ws/src/
cd ~/catkin_ws
rm -r src/sim/rotors_simulator # install it as above Section 1-2. //#include <eigen3/Eigen/Dense>
#include <Eigen/Dense>cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Release
!Optionally, for use with OctoMap
catkin build -DCMAKE_BUILD_TYPE=Release -DUSE_OCTOMAP=1git clone https://github.com/ntnu-arl/mbplanner_ws.git
cd mbplanner_ws
git checkout melodic-devel
wstool init
wstool merge packages_https.rosinstall
wstool update
mv mbplanner_ws/src/* ~/catkin_ws/src/
cd ~/catkin_ws
rm -r src/sim/rotors_simulator # install it as above Section 1-2.// Add
return true;//#include <eigen3/Eigen/Dense>
#include <Eigen/Dense>cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Release
!Optionally, for use with OctoMap
catkin build -DCMAKE_BUILD_TYPE=Release -DUSE_OCTOMAP=1sudo apt install ros-melodic-octomap*
sudo apt-get install libspatialindex-dev
python2 -m pip install rtree
cd ~/catkin_ws/src/
git clone https://github.com/catkin/catkin_simple.git
git clone https://github.com/mseln/aeplanner.git
cd ..
catkin build -DCMAKE_BUILD_TYPE=Release
## If PCL errors in rpl_exploration,
## change compiler to newer than c++14
## in line 4 for CMakeLists.txt of rpl_explorationsudo apt-get install libarmadillo-dev
sudo apt-get install libdw-dev
git clone https://github.com/stevengj/nlopt.git
cd nlopt
mkdir build && cd build
cmake ..
make
sudo make installcd ~/catkin_ws/src
git clone https://github.com/HKUST-Aerial-Robotics/FUEL.git
cd FUEL/fuel_planner/bspline_opt
wget -O CMakeLists.txt https://raw.githubusercontent.com/engcang/exploration-algorithms/main/fuel/CMakeLists.txt#set(CMAKE_CXX_FLAGS "-std=c++11")
set(CMAKE_CXX_FLAGS "-std=c++14")// Add
return idx;cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releasesudo apt install ros-melodic-octomap-ros libgoogle-glog-dev libgflags-dev
cd ~/catkin_ws/src
git clone https://github.com/HongbiaoZ/dsv_planner.git
cd dsv_planner
git checkout origin/melodic#target_link_libraries(octomap_manager ${PROJECT_NAME} glog)
target_link_libraries(octomap_manager ${PROJECT_NAME} glog gflags)find_package(catkin REQUIRED COMPONENTS
roscpp
geometry_msgs
visualization_msgs
message_generation
octomap_world
tf
kdtree
std_msgs
nav_msgs
misc_utils
graph_planner #ADDED
graph_utils
)//#include <eigen3/Eigen/Dense>
#include <Eigen/Dense>cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releasecd ~/catkin_ws/src
git clone https://github.com/caochao39/tare_planner.git
cd ..
sudo apt remove libflags* ### as it is using OR-Tools
catkin build -DCMAKE_BUILD_TYPE=Releasesudo apt-get install python-wstool python-catkin-tools
sudo apt-get install ros-melodic-cmake-modules ros-melodic-control-toolbox ros-melodic-joy ros-melodic-octomap-ros ros-melodic-mavlink ros-melodic-geographic-msgs autoconf libyaml-cpp-dev protobuf-compiler libgoogle-glog-dev liblapacke-dev libgeographic-dev
cd ~/catkin_ws/src
git clone https://github.com/ethz-asl/mav_active_3d_planning
wstool init
wstool merge mav_active_3d_planning/mav_active_3d_planning_https.rosinstall
wstool update
rm -r rotors_simulator # install it as above Section 1-2.
rm -r yaml_cpp_catkin # prevent confliction
cd ..
catkin build -DCMAKE_BUILD_TYPE=Releaseroslaunch interface_nbvp_rotors flat_exploration.launchroslaunch gbplanner rmf_sim.launch
or
roslaunch gbplanner smb_sim.launch<arg name="map_config_file" default="$(arg octomap_config_file)"/>
<arg name="map_config_file" default="$(arg voxblox_config_file)"/>roslaunch gbplanner gbplanner_sim.launch
rosservice call /planner_control_interface/std_srvs/automatic_planning "{}" <arg name="map_config_file" default="$(arg octomap_config_file)"/>
<arg name="map_config_file" default="$(arg voxblox_config_file)"/>roslaunch mbplanner mbplanner_m100_sim.launch
rosservice call /planner_control_interface/std_srvs/automatic_planning "{}" git clone https://github.com/engcang/exploration-algorithms --recursive
mv exploration-algorithms/aep/ouster_gazebo_plugins ~/catkin_ws/src/
mv exploration-algorithms/aep/gazebo_env ~/catkin_ws/src/
mv exploration-algorithms/aep/rpl_exploraiton ~/catkin_ws/src/aeplanner/
cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releasecd ~/catkin_ws/src/gazebo_env/gazebo_maps/reconstruction
tar -xf recon3.tar.xz
gedit ~/.bashrc
!Then, edit GAZEBO_PLUGIN_PATH and GAZEBO_MODEL_PATH!
export GAZEBO_PLUGIN_PATH=:/home/$(whoami)/PX4-Autopilot/build/px4_sitl_default/build_gazebo:$GAZEBO_PLUGIN_PATH
export GAZEBO_MODEL_PATH=/home/$(whoami)/catkin_ws/src/gazebo_env/drone_models:/home/$(whoami)/catkin_ws/src/gazebo_env/gazebo_maps/reconstruction:/home/$(whoami)/PX4-Autopilot/Tools/sitl_gazebo/models:$GAZEBO_MODEL_PATHroslaunch rpl_exploration px4_sitl_gazebo.launch
# choose sensor
roslaunch rpl_exploration rpl_exploration.launch sensor:=lidar
roslaunch rpl_exploration rpl_exploration.launch sensor:=rgbd
# arming & offboarding
rosservice call /mavros/cmd/arming "value: true"
rosservice call /mavros/set_mode "base_mode: 0 custom_mode: 'OFFBOARD'"roslaunch exploration_manager rviz.launch
roslaunch exploration_manager exploration.launchroslaunch vehicle_simulator system_garage.launch
roslaunch dsvp_launch explore_garage.launchroslaunch vehicle_simulator system_garage.launch
roslaunch tare_planner explore_garage.launchldd tare_planner/or-tools/lib/ldd libortool.so
! wrong output
libgflags.so.2.2 => sota_ws/devel/lib/libgflags.so.2.2 (0x00007f036830d000)
libglog.so.0 => sota_ws/devel/lib/libglog.so.0 (0x00007f03680dc000)
! after delete/rename wrong files
sudo ldconfig
ldd tare_planner/or-tools/lib/ldd libortool.so
! correct output
libgflags.so.2.2 => tare_planner/src/tare_planner/or-tools/lib/./libgflags.so.2.2 (0x00007fe6749e0000)
libglog.so.0 => tare_planner/src/tare_planner/or-tools/lib/./libglog.so.0 (0x00007fe6747a3000)git clone https://github.com/engcang/exploration-algorithms --recursive
cd exploration-algorithms/oipp
mv active_3d_planning_app_reconstruction ~/catkin_ws/src/mav_active_3d_planning/
mv active_3d_planning_core ~/catkin_ws/src/mav_active_3d_planning/
cd ~/catkin_ws
catkin build -DCMAKE_BUILD_TYPE=Releaseroslaunch active_3d_planning_app_reconstruction no_unreal_run_experiment.launch
rosservice call /planner/planner_node/toggle_running "data: true"| Back | FazBrowse Home | New Git URL |