Skip to content

Implementation of 2D-2D Visual Odometry using Optical Flow on KITTI dataset.

Notifications You must be signed in to change notification settings

yagdev99/VisualOdom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

VisualOdom

Monocular Visual Odometry

The method of determining motion of a monocular camera using sequential images is known as Monocular Visual Odometry.

Steps involved in Visual Odometry:

  1. Feature Detection: There are many different feature detection algorithms, most widely used ones include: SIFT, ORB, FAST, BRIEF and etc. The one being used in optical_2d.py is SIFT.
  2. Matching features from previous image to next image.
  3. Finding the relative rotation and translation from previous image to current image.
  4. Finding the rotation and translation from the initial image.

Scale Invarient Feature Transform (SIFT) is very robust feature detection algorithm but it takes very long to to detect the features in an image. Additionally it taking time to match it with the features in the previous image. In order to optimize this we use Optical Flow Feature Tracking. Now the steps become

  1. Feature Detection: There are many different feature detection algorithms, most widely used ones include: SIFT, ORB, FAST, BRIEF and etc. The one being used in optical_2d.py is SIFT.
  2. Track Features from prev image to current image. If the number of features of previous image tracked to current image are less than a thresold then detect new features using SIFT.
  3. Finding the relative rotation and translation from previous image to current image.
  4. Finding the rotation and translation from the initial image.

Result

result

Resources:

  1. Optical Flow
  2. Scaramuzza Part I
  3. Scaramuzza Part II
  4. Visual Odometry

About

Implementation of 2D-2D Visual Odometry using Optical Flow on KITTI dataset.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages