Skip to content

SashelI/SlaSHR

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SlaSHR Project. See RAPPORT FINAL.pdf

  1. State of the art
  2. Installation reports

State of the art :

Here is the state of the art we manage to do of existing open source VI-SLAM algorithms we found.

Installation reports :

We will now review what turned out to be the main part of your project, dealing with the installation of the differents solutions. Theses repports are here to help you get through the installation if you have problems.

  • Installation of ROS wrapper. You need to make sure orbslam3 dependencies are installed first.
  • Get the ORB SLAM 3 yaml files about cameras in [ORBSLAM3_clone_path]/Examples/[camera_type]/RealSense_D435i.yaml and /RealSense_T265.yaml.
  • Copy the files in [...]/catkin_ws/src/orb_slam3_ros_wrapper/config
  • Modify launchfiles (orb_slam3_ros_wrapper/launch) according to the case you want : update the topics according to those published by the camera feed of the rosbag.

(Exemple for the D435i with IMU : we get the topics published for the image and IMU data (with ros commands), and we specify the path in the launchfile :

>      <remap from="/camera/image_raw"         to="/camera/color/image_raw"/>
        <remap from="/imu"                      to="/camera/imu"/>

)

  • Modify .rviz files (orb_slam3_ros_wrapper/config) to enter the right topic of image feed.

  • WANRNING : IMU data of D435i are sperated in two topics (gyroscope and accelerometer). ORB SLAM 3 only need one to run. You can regroup them while reccording with a library like Realsens for ROS :

roslaunch realsense2_camera rs_camera.launch unite_imu_method:=linear_interpolation

see Realsens It require to record the datas with intel library and not Intel Realsens Viewer.

  • ORB SLAM 3 and Rviz interface launch with this command :
roslaunch orb_slam3_ros_wrapper [launch_file].launch
  • You just need to open a new terminal to play the .bag camera flow, or record the flow with :
rosbag play [path_to_rosbag_file]

or

roslaunch realsense2_camera rs_camera.launch unite_imu_method:=linear_interpolation
  • We can then subscribe to the output topics of ORB SLAM 3 and save them to a .bag to use them later. To use evo for exemple, you need to record theses topics in particular :
rosbag record -O [dest_file_name]  /initialpose /orb_slam3/camera_pose /tf

We had many issues installing Kimera.

  • install ROS wrapper for Kimera from here
  • have a clean installation of ROS following this
  • install ROS dependencie mesh_rviz_plugins in a catskin workspace
  • Make sure to execute all commands to install all the dependencies.
  • Follow the instructions to install ROS wrapper of Kimera
    • WARNING : you can have error with gtsam and Kimera-VIO while building the catskin workspace. Follow this post to have more informations to fix the problem. (change the gsam version and modifiy kimera to accept the new version)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 72.2%
  • Python 27.8%