Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.99 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.99 KB

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