All Projects → PyojinKim → OPVO

PyojinKim / OPVO

Licence: MIT License
Sample code of BMVC 2017 paper: "Visual Odometry with Drift-Free Rotation Estimation Using Indoor Scene Regularities"

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to OPVO

Openvslam
OpenVSLAM: A Versatile Visual SLAM Framework
Stars: ✭ 2,945 (+7262.5%)
Mutual labels:  robotics, slam, visual-odometry
Anms Codes
Efficient adaptive non-maximal suppression algorithms for homogeneous spatial keypoint distribution
Stars: ✭ 174 (+335%)
Mutual labels:  robotics, slam
Flame
FLaME: Fast Lightweight Mesh Estimation
Stars: ✭ 164 (+310%)
Mutual labels:  robotics, slam
Iros2018 Slam Papers
IROS2018 SLAM papers (ref from PaoPaoRobot)
Stars: ✭ 224 (+460%)
Mutual labels:  robotics, slam
Cleanit
Open-source Autonomy Software in Rust-lang with gRPC for the Roomba series robot vacuum cleaners. Under development.
Stars: ✭ 125 (+212.5%)
Mutual labels:  robotics, slam
Ssl slam
SSL_SLAM: Lightweight 3-D Localization and Mapping for Solid-State LiDAR IEEE RA-L 2021
Stars: ✭ 144 (+260%)
Mutual labels:  robotics, slam
Iris lama
LaMa - A Localization and Mapping library
Stars: ✭ 217 (+442.5%)
Mutual labels:  robotics, slam
Iros20 6d Pose Tracking
[IROS 2020] se(3)-TrackNet: Data-driven 6D Pose Tracking by Calibrating Image Residuals in Synthetic Domains
Stars: ✭ 113 (+182.5%)
Mutual labels:  robotics, pose-estimation
Iros2020 Paper List
IROS2020 paperlist by paopaorobot
Stars: ✭ 247 (+517.5%)
Mutual labels:  robotics, slam
simple-sfm
A readable implementation of structure-from-motion
Stars: ✭ 19 (-52.5%)
Mutual labels:  slam, visual-odometry
realsense explorer bot
Autonomous ground exploration mobile robot which has 3-DOF manipulator with Intel Realsense D435i mounted on a Tracked skid-steer drive mobile robot. The robot is capable of mapping spaces, exploration through RRT, SLAM and 3D pose estimation of objects around it. This is an custom robot with self built URDF model.The Robot uses ROS's navigation…
Stars: ✭ 61 (+52.5%)
Mutual labels:  slam, pose-estimation
Se2clam
SE(2)-Constrained Localization and Mapping by Fusing Odometry and Vision (IEEE Transactions on Cybernetics 2019)
Stars: ✭ 116 (+190%)
Mutual labels:  robotics, slam
M Loam
Robust Odometry and Mapping for Multi-LiDAR Systems with Online Extrinsic Calibration
Stars: ✭ 114 (+185%)
Mutual labels:  robotics, slam
Pythonrobotics
Python sample codes for robotics algorithms.
Stars: ✭ 13,934 (+34735%)
Mutual labels:  robotics, slam
Awesome Robotic Tooling
Tooling for professional robotic development in C++ and Python with a touch of ROS, autonomous driving and aerospace.
Stars: ✭ 1,876 (+4590%)
Mutual labels:  robotics, slam
Iros2019 Paper List
IROS2019 paper list from PaopaoRobot
Stars: ✭ 214 (+435%)
Mutual labels:  robotics, slam
slamkit
SLAM Kit
Stars: ✭ 28 (-30%)
Mutual labels:  slam, pose-estimation
Pose Interpreter Networks
Real-Time Object Pose Estimation with Pose Interpreter Networks (IROS 2018)
Stars: ✭ 104 (+160%)
Mutual labels:  robotics, pose-estimation
Door Slam
Distributed, Online, and Outlier Resilient SLAM for Robotic Teams
Stars: ✭ 107 (+167.5%)
Mutual labels:  robotics, slam
Minisam
A general and flexible factor graph non-linear least square optimization framework
Stars: ✭ 246 (+515%)
Mutual labels:  robotics, slam

Orthogonal Plane-based Visual Odometry (OPVO)

This package provides a MATLAB implementation of BMVC 2017 paper: "Visual Odometry with Drift-Free Rotation Estimation Using Indoor Scene Regularities" for the purpose of research and study only. Note that this repository only includes simplified proposed visual odometry example codes to understand how the OPVO works in structured environments.

OPVO

1. Goal

Our goal is to estimate 6-DoF camera motion with respect to the indoor structured environments. For reducing drift of the rotation estimate, which is the main source of position inaccuracy in visual odometry, the Manhattan frame tracking is performed to estimate the absolute camera orientation. Given drift-free rotation estimates in Manhattan World, translational motion is estimated by minimizing de-rotated reprojection with the tracked features.

OPVO

2. Prerequisites

This package depends on mexopencv library for keypoint processing, KLT tracking, and translation estimation. cv.* functions in this package cannot run without mexopencv install in the MATLAB environment. Please, build mexopencv in your OS first, and then run this package.

3. Usage

  • Download the ICL-NUIM dataset from https://www.doc.ic.ac.uk/~ahanda/VaFRIC/iclnuim.html, 'of kt3' is recommended.

  • Or, Use the ICL-NUIMdataset/of_kt3/ included in this package.

  • Define 'datasetPath' correctly in your directory at setupParams_ICL_NUIM.m file.

  • Run OPVO_core/main_script_ICL_NUIM.m, which will give you the 3D motion estimation result. Enjoy! :)

4. Publications

The approach is described and used in the following publications:

  • Linear RGB-D SLAM for Planar Environments (Pyojin Kim, Brian Coltin, and H. Jin Kim), ECCV 2018.

  • Indoor RGB-D Compass from a Single Line and Plane (Pyojin Kim, Brian Coltin, and H. Jin Kim), CVPR 2018.

  • Low-Drift Visual Odometry in Structured Environments by Decoupling Rotational and Translational Motion (Pyojin Kim, Brian Coltin, and H. Jin Kim), ICRA 2018.

You can find more related papers at http://pyojinkim.com/_pages/pub/index.html.

5. License

The package is licensed under the MIT License, see http://opensource.org/licenses/MIT.

if you use OPVO in an academic work, please cite:

@inproceedings{kim2017visual,
  author = {Kim, Pyojin and Coltin, Brian and Kim, H Jin},
  title = {Visual Odometry with Drift-Free Rotation Estimation Using Indoor Scene Regularities},
  year = {2017},
  booktitle = {British Machine Vision Conference (BMVC)},
 }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].