Skip to content

This repository has the process to setup ORB_SLAM and how to use it.

Notifications You must be signed in to change notification settings

govindak-umd/ORB_SLAM_2and3_Dev

Repository files navigation

Setting up of ORB-SLAM2 and ORB-SLAM3

This repository has the process to setup ORB_SLAM2 and ORB_SLAM3 and how to use it.

The official GitHub repository for ORBS-SLAM2 is linked here.

The official GitHub repository for ORBS-SLAM3 is linked here.

Related Repositories:

Respository Name Link
OpenVSLAM Test Link
Driving car test Link
BNO055 IMU Link
NEO-6m GPS Link

System:

The code below is tested on:

  • Ubuntu 18.05 LTS
  • NVIDIA GTX 950M

Pre requisites :

  • ROS
  • OpenCV
  • g2o
  • DBoW2
  • Pangolin
  • Eigen

Installation

Once these are installed, go to your home folder and run the following commands

git clone https://github.com/raulmur/ORB_SLAM2.git
cd ORB_SLAM2
chmod +x build.sh
./build.sh

A compile issue might arise here. Go to the /include folder and add

#include <unistd.h>

into System.h

Testing Installation

Download a sequence from http://vision.in.tum.de/data/datasets/rgbd-dataset/download and uncompress it.

Execute the following command. Change TUMX.yaml to TUM1.yaml,TUM2.yaml or TUM3.yaml for freiburg1, freiburg2 and freiburg3 sequences respectively. Change PATH_TO_SEQUENCE_FOLDER to the uncompressed sequence folder.

./Examples/Monocular/mono_tum Vocabulary/ORBvoc.txt Examples/Monocular/TUM1.yaml ~/Downloads/rgbd_dataset_freiburg1_rpy/

You should be able to see the ORB SLAM2 Working now.

Other examples for

  • Monocular / Stereo / RGB-D images

and,

  • KITTI / TUM / EuROC MAV datasets

can be found here.

ROS Installation

mkdir orb_slam2_ws
cd orb_slam2_ws

mkdir src
cd src
catkin_init_workspace

cd ..
catkin_make
cd src
git clone https://github.com/tianchenliu/ORB_SLAM2
git clone https://github.com/stevenlovegrove/Pangolin

cd Pangolin
mkdir build
cd build
cmake ..
make
sudo make install
cd ..

cd ~/orb_slam2_ws/src/ORB_SLAM2/Thirdparty/DBoW2/
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make

cd ~/orb_slam2_ws/src/ORB_SLAM2/Thirdparty/g2o/
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make

cd ~/orb_slam2_ws/src/ORB_SLAM2
mkdir build
cd build
cmake .. -DROS_BUILD_TYPE=Release
make

export ROS_PACKAGE_PATH=${ROS_PACKAGE_PATH}:~/orb_slam2_ws/src/ORB_SLAM2/Examples/ROS
chmod +x build_ros.sh
./build_ros.sh

Seting up USB-CAM

git clone https://github.com/ros-drivers/usb_cam.git
cd src/usb_cam-develop
mkdir build
cd build
cmake ..
make

Edit device input (e.g., value=”/dev/video0”) for usb_cam-test.launch file

Check where the input is coming from using this

ls -ltrh /dev/video*
ffplay /dev/video0

Edit ORB_SLAM2/Example/ROS/ORB_SLAM2/src/ros_mono.cc from

ros::Subscriber sub = nodeHandler.subscribe("/image/image_raw", 1, &ImageGrabber::GrabImage,&igb);

to

ros::Subscriber sub = nodeHandler.subscribe("/usb_cam/image_raw", 1, &ImageGrabber::GrabImage,&igb);

Rebuild the ros package:

./build_ros.sh

Install evo

The evo package should be installed for visualizing SLAM and odometry data

sudo pip install evo --upgrade --no-binary evo

Camera calibration

Open 3 tabs

roscore

Open a new tab

source devel/setup.bash

roslaunch usb_cam usb_cam-test.launch 

Open a new tab

source devel/setup.bash

rosrun camera_calibration cameracalibrator.py --size 8x6 --square 0.0254 image:=/usb_cam/image_raw camera:=/usb_cam

Run the code and keep moving the checker board until the Calibrate button pops blue. Click and wait. Hit save to get the callibration data stored in the /tmp folder.

The callibration data will be saved

Create a new camera parameter file, in KITTI or TUM format. Refer this stackoverflow link and this for the parameters.

KITTI Dataset Example

To run Mono:

Go to ORB_SLAM2 Package and execute:

./Examples/Monocular/mono_kitti Vocabulary/ORBvoc.txt Examples/Monocular/KITTI00-02.yaml datasets/kitti_dataset/sequences/00

To run Stereo:

Go to ORB_SLAM2 Package and execute:

./Examples/Stereo/stereo_kitti Vocabulary/ORBvoc.txt Examples/Stereo/KITTI00-02.yaml datasets/kitti_dataset/sequences/00

To plot the path for the kitti dataset

If there are 12 elements per row :

evo_traj kitti KeyFrameTrajectory.txt --plot

If there are 8 elements per row :

evo_traj tum KeyFrameTrajectory.txt --plot

In KeyFrameTrajectory.txt file, every row has 8 entries containing time stamp (in seconds), position and orientation: 'timestamp x y z q_x q_y q_z q_w'

So to achieve what you want to do, you could for example load the file as a table (similar to a .csv file) and then the columns 2 to 4 are your x, y, z values (or 1 to 3 if you count from 0)

To view just the xz plane:

evo_traj tum kitti_key_frame_trajectory.txt --plot_mode xz --plot

To view multiple trajectories in one go:

evo_traj tum trajectory_1.txt trajectory_2.txt --plot_mode xz --plot

Custom USB-Video File Example

The steps to be followed to prepare the dataset are:

  • Record the video using the capture_video.py.
  • Once recorded, generate the sequences. This can be done using the video2sequences.py script. Note that the sequences are named as per Kitti requirements.
  • This script also generates the timestamp file, times.txt. This is also a Kitti requirement.
  • Put the sequences in datasets/urban_dataset/sequences/XX/image_0" folder. Here XX is the sequence number
  • Now, paste the generated timestamp in the datasets/urban_dataset/sequences/XX/ folder.
  • Beside this paste the calib.txt file. To generate this, refer to the Examples/Monocular/KITTI00-02.yaml and Examples/Monocular/nexigo_callibration_data/nexigo_cam.yaml. This is a Kitti requriement as well.

Now, you can run it as follows:

./Examples/Monocular/mono_kitti Vocabulary/ORBvoc.txt Examples/Monocular/nexigo_callibration_data/nexigo_cam.yaml datasets/urban_dataset/sequences/00

Generate the map as follows:

python pcl2pgm.py

Custom USB-Video Feed example

Open 4 tabs

roscore

Open a new tab

source devel/setup.bash

roslaunch usb_cam usb_cam-test.launch

Open a new tab

source devel/setup.bash

rosrun ORB_SLAM2 Mono src/ORB_SLAM2/Vocabulary/ORBvoc.txt src/ORB_SLAM2/Examples/Monocular/nexigo_callibration_data/nexigo_cam.yaml 

Open a new tab

evo_traj tum KeyFrameTrajectory.txt --plot

While this is an accurate map, the map will be scaled. To get the original map, go here and download the odometry ground truth poses (4 MB). You can plot this using evo_traj as well.

Stereo Mode ROS BAG example

Open 3 tabs

roscore

Open a new tab

source devel/setup.bash

rosrun ORB_SLAM2 Stereo Vocabulary/ORBvoc.txt Examples/Stereo/EuRoC.yaml false

Open a new tab

source devel/setup.bash

rosbag play --pause /path/to/V1_01_easy.bag /cam0/image_raw:=/camera/left/image_raw /cam1/image_raw:=/camera/right/image_raw

Converting pointcloud to Occupancy grid

The pointcloud data is stored by the ORBSLAM in a txt file. This can be converted to occupancy grid, visualized in RVIZ and used for robot navigation

Another option is to use pointcloud_to_laserscan package. But LIDAR is always assumed to be noisy, and ORBSLAM uses much more reliable points only. So, this method is not used.

Instead we will try and generate a map from the .txt file.

Generating the map

Visit this repository for reference.

Steps to be done are:

Replace the following files (after observing the content)

  • System.h (add #include <unistd.h> into System.h)
  • System.cc
  • Map.h
  • Map.cc

Rebuild the ros package:

./build_ros.sh

Run the kitti test again using the Monocular camera Example folder

./Examples/Monocular/mono_kitti Vocabulary/ORBvoc.txt Examples/Monocular/KITTI00-02.yaml datasets/kitti_dataset/sequences/00

You can either view this as a map using the evo package, as described in the above examples. However, the trajectories are now saved in TUM format. Hence, to visualize these kitti trajectories, execute:

evo_traj tum kitti_key_frame_trajectory.txt data--plot_mode xz --plot

or run the pointCloudToGridMap2D.py (from opencv environment) and read the kitti_key_frame_trajectory.py and kitti_map_pts_and_keyframes.

The second approach will provide us with the map file, to be used in RViz:

python pcl2pgm.py 

You will now get the .pgm map in the directory.

Navigating the robot in RVIZ

Setting up the turtlebot

sudo apt-get install ros-melodic-turtlebot3-*

Setting up ROS Navigation Stack

sudo apt-get  install ros-melodic-navigation

Setting up the YAML Map

Group the map.pgm and a new map.yaml file in a folder, /maps.

mkdir maps

Learn about Map Server here

catkin_create_pkg map_provider

Put the folder in this package

mkdir launch

Create a new launch file:

gedit map_custom_server.launch

gedit map_navigation.launch

Fill it up as shown in the attached map_provider/launch scripts.

Isolate and build this package

Go to orb_slam2_ws/src/

catkin_make_isolated --pkg map_provider

Using TurtleBot3 for Navigation

Add the following line to .bashrc

export TURTLEBOT3_MODEL=burger

To Navigate a TurtleBot3,

Open 3 tabs:

roscore

Open a new tab

roslaunch turtlebot3_gazebo turtlebot3_empty_world.launch 

Open a new tab

cd orb_slam2_ws/
source devel/setup.bash
roslaunch map_provider map_navigation.launch   

Agricultural application

You can also access the agriculture dataset, by substituting urban_dataset with ag_dataset.

ORB_SLAM3_Installation and Test

Make sure all the pre-requisites of ORB_SLAM_2 are met, before running the following commands

cd ~/orb_Slam2_ws/src
git clone https://github.com/UZ-SLAMLab/ORB_SLAM3.git
cd ORB_SLAM3
chmod +x build.sh
./build.sh

Test Installation:

./Examples/Monocular/mono_kitti Vocabulary/ORBvoc.txt Examples/Monocular/KITTI00-02.yaml ../Lite_ORB_SLAM2/datasets/kitti_dataset/sequences/00

To test ORB SLAM-3 on a custom dataset, a change has to be made on the camera setup yaml file:

The updated file has been uploaded here as nexigo_cam_orb_slam_3.yaml.

The changes are:

  • Add camera width param
  • Add camera height param
  • Add camera type - 'pinhole'

Perform ORB-SLAM3 on a custom dataset with the following command:

./Examples/Monocular/mono_kitti Vocabulary/ORBvoc.txt nexigo_cam_orb_slam_3.yaml datasets/urban_dataset/sequences/09

View the elevation predictions made:

evo_traj tum KeyFrameTrajectory.txt --plot_mode xy --plot

View the top down plot:

evo_traj tum KeyFrameTrajectory.txt --plot_mode xz --plot

Else view the overall plot by:

evo_traj tum KeyFrameTrajectory.txt --plot

References

Here are some important links for this project:

About

This repository has the process to setup ORB_SLAM and how to use it.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published