Difference between revisions of "Tutorial Geometric Vision"

From BoofCV
Jump to navigationJump to search
m
Line 2: Line 2:


A major component of 3D computer vision is the study of [http://en.wikipedia.org/wiki/Epipolar_geometry epipolar geometry], the geometry of two views.  BoofCV provides many standard algorithms for mathematically describing features across two views and more.  Below is a list of these algorithms.  The API is still being worked on and a more detailed tutorial will be written later on.
A major component of 3D computer vision is the study of [http://en.wikipedia.org/wiki/Epipolar_geometry epipolar geometry], the geometry of two views.  BoofCV provides many standard algorithms for mathematically describing features across two views and more.  Below is a list of these algorithms.  The API is still being worked on and a more detailed tutorial will be written later on.
'''AS A WHOLE THIS CODE SHOULD BE CONSIDERED EXPERIMENTAL'''


Recommend Reading:
Recommend Reading:
Line 15: Line 17:


Algorithm List
Algorithm List
* Fundamental Matrix 8 Points (Linear)
* Fundamental/Essential Matrix 8+ Points
* Fundamental Matrix 7 Points (Linear)
* Fundamental/Essential Matrix 7 Points
* Fundamental Optimization
* Essential Matrix 5 Points
* Fundamental Matrix Non-linear Optimization
** Sampson Error
** Sampson Error
** Epipolar Error
** Epipolar Error

Revision as of 17:06, 18 September 2012

Geometric Computer Vision Tutorial

A major component of 3D computer vision is the study of epipolar geometry, the geometry of two views. BoofCV provides many standard algorithms for mathematically describing features across two views and more. Below is a list of these algorithms. The API is still being worked on and a more detailed tutorial will be written later on.

AS A WHOLE THIS CODE SHOULD BE CONSIDERED EXPERIMENTAL

Recommend Reading:


Algorithm List

  • Fundamental/Essential Matrix 8+ Points
  • Fundamental/Essential Matrix 7 Points
  • Essential Matrix 5 Points
  • Fundamental Matrix Non-linear Optimization
    • Sampson Error
    • Epipolar Error
  • Homography 4 Points (Linear)
  • Homography Optimization
    • Sampson Error
    • Transfer Error
  • Efficient PnP 4-Point
  • Linear 6 Point Pose
  • Linear Pixel Depth
  • Triangulation Geometric
  • Triangulation Linear
  • Triangulation Optimization
    • Sampson Error
    • Euclidean Error
  • Decompose Essential
  • Decompose Homography
  • Bundle Adjustment
    • Dense (inefficient/slow)
  • Stereo Rectification
    • Calibrated
    • Uncalibrated

Examples

Related

  • Zhang 99 Camera Calibration
  • Various different feature trackers and detectors