This code contains an algorithm to compute monocular visual odometry by using both point and line segment features, based on the open source version of SVO.
Authors: Ruben Gomez-Ojeda, Jesus Briales and Javier Gonzalez-Jimenez
Related publication: PL-SVO: Semi-direct monocular visual odometry by combining points and line segments
If you use PL-SVO in your research work, please cite:
@inproceedings{ gomez2016plsvo,
title = {{PL-SVO: Semi-direct monocular visual odometry by combining points and line segments}},
author = {Gomez-Ojeda, Ruben and Briales, Jesus and Gonzalez-Jimenez, Javier},
booktitle = {Intelligent Robots and Systems (IROS), 2016 IEEE/RSJ International Conference on},
pages = {4211--4216},
year = {2016},
organization = {IEEE}
}
The provided code is published under the General Public License Version 3 (GPL v3). More information can be found in the "LICENCE" also included in the repository.
Please do not hesitate to contact the authors if you have any further questions.
We have tested PL-SVO with Ubuntu 12.04, 14.04 and 16.04, but it should be straightforward to compile along other platforms. Please notice that several internal processes, such as feature detection and matching can work in parallel, for which a powerful computer would be useful if working with the parallel configuration (change flags in the config file).
See the SVO Wiki for more instructions: https://github.com/uzh-rpg/rpg_svo/wiki
In case of using the provided representation.
sudo apt-get install libmrpt-dev
Download and install instructions can be also found at: http://www.mrpt.org/ .
We have modified the line_descriptor module from the OpenCV/contrib library (both BSD) which is included in the 3rdparty folder.
Executing the file build.sh will configure and generate the line_descriptor module, and then will configure and generate the PL-SVO library for which we generate: libplsvo.so in the lib folder, and the application run_pipeline that works with our dataset format (explained in the next section).
The run_pipeline basic usage is:
./run_pipeline <dataset_path>
where