Coder Social home page Coder Social logo

danilrivero / lidar_s_graphs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from snt-arg/lidar_s_graphs

0.0 0.0 0.0 51.91 MB

Repository to generate in Realtime S-Graphs for Robot pose and High-Level Map Optimization using 3D LiDAR Data

License: GNU General Public License v3.0

Shell 0.06% C++ 97.60% Python 0.73% CMake 1.14% Dockerfile 0.47%

lidar_s_graphs's Introduction

S-Graphs

Situational graphs (S-Graphs) is a ROS2 package for generating in real-time four-layered hierarchical factor graphs representing a scene graph including Keyframes registring the robot poses, Walls which map wall planes, Rooms Layer constraining the wall planes using 4 wall-room or 2 wall-room factors, Floors constraining the rooms within a given floor level. It also supports several graph constraints, such as GPS, IMU acceleration (gravity vector), IMU orientation (magnetic sensor). We have tested this package mostly with Velodyne (VLP16) sensors in structured indoor environments. This work is a fork of hdl_graph_slam which as previously in ROS1.

Logo

๐Ÿ“œ Table of contents

๐Ÿ“– Published Papers

S-Graphs+: Real-time Localization and Mapping leveraging Hierarchical Representations
@ARTICLE{10168233,
 author={Bavle, Hriday and Sanchez-Lopez, Jose Luis and Shaheer, Muhammad and Civera, Javier and Voos, Holger},
 journal={IEEE Robotics and Automation Letters},
 title={S-Graphs+: Real-Time Localization and Mapping Leveraging Hierarchical Representations},
 year={2023},
 volume={8},
 number={8},
 pages={4927-4934},
 doi={10.1109/LRA.2023.3290512}}
Situational Graphs for Robot Navigation in Structured Indoor Environments
  @ARTICLE{9826367,
    author={Bavle, Hriday and Sanchez-Lopez, Jose Luis and Shaheer, Muhammad and Civera, Javier and Voos, Holger},
    journal={IEEE Robotics and Automation Letters},
    title={Situational Graphs for Robot Navigation in Structured Indoor Environments},
    year={2022},
    volume={7},
    number={4},
    pages={9107-9114},
    doi={10.1109/LRA.2022.3189785}}

โš™๏ธ Installation

Note

S-Graphs+ was only tested on Ubuntu 20.04, with ROS1 Noetic and ROS2 Foxy distro.

๐Ÿ“ฆ Installation From Source

The installation consists of 2 parts. One for ROS1 and another for ROS2. You can use just the ROS2 version, however it will not be working to it's full potential.

Important

Before proceeding, make sure you have rosdep installed. You can install it using sudo apt-get install python3-rosdep In addition, ssh keys are needed to be configured on you GitHub account. If you haven't yet configured ssh keys, follow this tutorial

1๏ธโƒฃ Installation on ROS2

  1. Update Rosdep:
rosdep init && rosdep update --include-eol-distros
  1. Create a ROS2 workspace for S-Graphs
mkdir -p $HOME/workspaces/s_graphs_ros2_ws/src && cd $HOME/workspaces/s_graphs_ros2_ws/src && source /opt/ros/foxy/setup.bash
  1. Clone the S-Graphs repository into the created workspace
git clone https://github.com/snt-arg/s_graphs.git -b feature/ros2
  1. Install required dependencies using vcstool
cd s_graphs && vcs import --recursive ../ < .rosinstall_ros2
  1. Install required ROS2 packages
cd ../../ && rosdep install --from-paths src -y --ignore-src -r
  1. Build workspace
colcon build --symlink-install

Note

If you want to compile with debug traces (from backward_cpp ) run:

colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo
  1. Source workspace
source install/setup.bash

2๏ธโƒฃ Download ROS Bridge

source /opt/ros/foxy/setup.bash && sudo apt install ros-foxy-ros1-bridge

3๏ธโƒฃ Installation on ROS1

Important

Before following the instructions from below, ensure that you are in a fresh terminal, without ROS2 sourced.

  1. Create a ROS1 workspace for S-Graphs
mkdir -p $HOME/workspaces/s_graphs_ros1_ws/src && cd $HOME/workspaces/s_graphs_ros1_ws/src && source /opt/ros/noetic/setup.bash
  1. Clone the S-Graphs repository into the created workspace
git clone https://github.com/snt-arg/s_graphs.git -b feature/ros2
  1. Install required dependencies using vcstool
cd s_graphs && vcs import --recursive ../ < .rosinstall_ros1
  1. Install required ROS packages
cd ../../ && rosdep install --from-paths src --ignore-src -y -r
  1. Install pcl_ros
sudo apt install ros-noetic-pcl-ros
  1. Build workspace
catkin build

๐Ÿงช Unit Tests

Some unit tests are available. In case you want to test, run the following command:

colcon test --packages-select s_graphs --event-handler=console_direct+

๐Ÿณ Docker

Build Docker Image

  1. Create a ROS2 workspace for S-Graphs
mkdir -p $HOME/workspaces/s_graphs_ros2_ws/src && cd $HOME/workspaces/s_graphs_ros2_ws/src
  1. Change directory to where Dockerfile is located in s_graphs
git clone https://github.com/snt-arg/s_graphs.git -b feature/ros2 &&
cd $HOME/workspaces/s_graphs_ros2_ws/src/s_graphs/docker/foxy_noetic
  1. Build image

Note

In case you have a different ssh key name for your GitHub account, change id_ed25519 oto yours.

docker build --ssh default=$HOME/.ssh/id_ed25519 .

Create a Docker Container

  1. Create a container for the s_graphs image.

Warning

The argument --net host needs to be passed to the docker run command in order to have network access.

docker run -dit --net host --name s_graphs_container sntarg/s_graphs
  1. Execute the container
docker exec -ti s_graphs_container bash
  1. Use MProcs to spawn the desired processes
mprocs_real # To run on a real robot or a real dataset
# OR
mprocs_virtual # To run on a simulation or virtual dataset

๐Ÿš€ Example on Datasets

Warning

For execution of the experiments we use mprocs, which makes the process of launching different processes easier.

Real Dataset

Important

Download real dataset using this link and store it in the folder ~/Downloads/real, the below mprocs script will not work otherwise.

cd $HOME/workspaces/s_graphs_ros2_ws/src/s_graphs && mprocs --config .real_mprocs.yaml

Virtual Dataset

Important

Download virtual dataset using this link and store it in the folder ~/Downloads/virtual, the below mprocs script will not work otherwise.

cd $HOME/workspaces/s_graphs_ros2_ws/src/s_graphs && mprocs --config .virtual_mprocs.yaml

Running S_Graphs with Docker

Note

This tutorial assumes that you have followed the instructions to setup docker in section ๐Ÿณ Docker

  1. Download the dataset you desire from above to your local machine.

  2. Move the rosbag inside docker container

docker cp ~/Downloads/real s_graphs_container:/root/Downloads/real # For real dataset
# OR
docker cp ~/Downloads/virtual s_graphs_container:/root/Downloads/virtual # For virtual dataset
  1. Run the container
docker exec -ti s_graphs_container bash
  1. Run mprocs
mprocs_real # To run on a real robot or a real dataset
# OR
mprocs_virtual # To run on a simulation or virtual dataset
  1. Visualization using Rviz (open another terminal to run this command)

Note

The command below assumes you has ros2 foxy on your local machine

source /opt/ros/foxy/setup.bash && rviz2 -d $HOME/workspaces/s_graphs_ros2_ws/src/s_graphs/rviz/s_graphs_ros2.rviz

๐Ÿ› ๏ธ Run S_Graphs On Your Data

  1. Define the transformation between your sensors (LIDAR, IMU, GPS) and base_link of your system using static_transform_publisher (see line, s_graphs_launch.py). All the sensor data will be transformed into the common base_link frame, and then fed to the SLAM algorithm. Note: base_link frame in virtual dataset is set to base_footprint and in real dataset is set to body

  2. Remap the point cloud topic in s_graphs_launch.py of s_graphs_prefiltering_node and s_graphs_node. Like:

    remappings=[
            ("velodyne_points", "/rs_lidar/points"),
            ("imu/data", "/platform/imu/data"),
        ],
  ...
  1. If you have an odometry source convert it to base ENU frame, then set the arg compute_odom to false in s_graphs_ros2_launch.py and then remap odom topic in s_graphs_node like
     remappings=[
            ("velodyne_points", "/platform/velodyne_points"),
            ("/odom", "/husky/odometry"),
        ],
  ...

Note

If you want to visualize the tfs correctly from your odom source, you MUST provide a tf from the odom to base_link frame.

๐Ÿค– ROS Related

๐Ÿ“ฅ Subscribed Topics

s_graphs node

Topic name Message Type Description
/odom nav_msgs/Odometry The odometry from the robot.
/filtered_points sensor_msgs/PointCloud2 The filtered data from the LiDAR sensor.

room_segmentation node

Topic name Message Type Description
/voxblox_skeletonizer/sparse_graph visualization_msgs/MarkerArray Represents the free space where the robot can go to. Also known as free-space clusters.
/s_graphs/map_planes s_graphs/PlanesData Planes seen by the current robot keyframe.

floor_plan node

Topic name Message Type Description
/s_graphs/all_map_planes visualization_msgs/MarkerArray All the planes that have been seen by the robot.

๐Ÿ“ค Published Topics

s_graphs node

Topic name Message Type Description
/s_graphs/markers visualization_msgs/MarkerArray These markers represent the different s_graphs layers.
/s_graphs/odom2map geometry_msgs/TransformStamped The estimated drift of the robot within its map frame (world).
/s_graphs/odom_pose_corrected geometry_msgs/PoseStamped The optimized/drift-free pose of the robot once odom2map is applied.
/s_graphs/odom_path_corrected nav_msgs/Path The optimized/drift-free pose path of the robot once the odom2map is applied.
/s_graphs/map_points sensor_msgs/PointCloud2 The projected 3D points using the optimized robot pose.
/s_graphs/map_planes s_graphs/PlanesData Planes seen by the current robot keyframe.
/s_graphs/all_map_planes s_graphs/PlanesData All the planes that have been seen by the robot.

room_segmentation node

Topic name Message Type Description
/room_segmentation/room_data s_graphs/RoomsData Contains all the necessary information about the rooms on a given floor.

floor_plan node

Topic name Message Type Description
/floor_plan/floor_data s_graphs/RoomData Contains all the necessary information about each floor.

๐Ÿ”„ ROS Services

Topic name Message Type Description
/s_graphs/dump s_graphs/DumpGraph Save all the internal data (point clouds, floor coeffs, odoms, and pose graph) to a directory.
Topic name Message Type Description
/s_graphs/save_map s_graphs/SaveMap Save the generated 3D map as a PCD file.

โš™๏ธ ROS Parameters

All the configurable parameters are listed in config folder as ros params.

๐ŸŒ Published TFs

  • map2odom: The transform published between the map frame and the odom frame after the corrections have been applied.

  • The entire tf_tree for the virtual experiment can be seen in the figure below.

tf_tree

lidar_s_graphs's People

Contributors

hridaybavle avatar shaheer34mts avatar koide3 avatar pedros235 avatar miferco97 avatar manishsaini0901 avatar jitrc avatar robustify avatar edufschmidt avatar jihoonl avatar krisklau avatar ksuszka avatar naoki-mizuno avatar tim-fan avatar tutorgaming avatar tkkim-robot avatar ll7 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.