Skip to content

alishobeiri/Monocular-Video-Odometery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monocular Video Odometry Using OpenCV

This is an Python OpenCV based implementation of visual odometery.

An invaluable resource I used in building the visual odometry system was Avi Singh's blog post: http://avisingh599.github.io/vision/monocular-vo/ as well as his C++ implementation found here.

Datasets that can be used: http://www.cvlibs.net/datasets/kitti/eval_odometry.php

Demo Video

Algorithm

Steps of the algorithm are taken from Avi Singh's blog post mentioned above.

  1. Capture images: It and It + 1
  2. Undistort the captured images (not necessary for KITTI dataset)
  3. Use FAST algorithm to detect features in image It. Track these features using an optical flow methodology, remove points that fall out of frame or are not visible in It + 1. Trigger a new detection of points if the number of tracked points falls behind a threshold. Set to 2000 in this implementation.
  4. Apply Nister's 5-point algorithm with RANSAC to find the essential matrix.
  5. Estimate R, t from the essential matrix that was computed from Nister's algorithm.
  6. Obtain scale information from an external source and concatenate translation vectors t and rotation matrices R.

For each of the steps above, the line of code is provided to the exact location where this step is preformed in the code for easy understanding. Steps 1 and 2 are skipped as they are not necessary in the KITTI dataset.

  1. Line 80, monovideoodemetry.py
  2. Line 112, monovideoodemetry.py
  3. Line 113, monovideoodemtry.py
  4. Line 142, monovideoodemtry.py

The dataset used is: KITTI Visual Odometry

Running Program

  1. First clone repository
  2. In test.py change img_path and pose_path to correct image sequences and pose file paths
  3. Ensure focal length and principal point information is correct
  4. Adjust Lucas Kanade Parameters as needed
  5. Run command python ./test.py

About

Monocular odometry using OpenCV

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages