Skip to content

Commit

Permalink
Rewrote 5-pt coeff mat.
Browse files Browse the repository at this point in the history
  • Loading branch information
prclibo committed Mar 15, 2013
1 parent a61dcb1 commit e65d4e6
Show file tree
Hide file tree
Showing 16 changed files with 398 additions and 1,854 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Expand Up @@ -5,7 +5,6 @@ cmake_minimum_required(VERSION 2.8)
add_subdirectory(four-point-numerical)
add_subdirectory(four-point-groebner)
add_subdirectory(five-point-nister)
add_subdirectory(five-point-groebner)
add_subdirectory(one-point)

add_executable(demo demo.cpp)
Expand Down
21 changes: 1 addition & 20 deletions README.md
Expand Up @@ -57,7 +57,7 @@ D. Scaramuzza, “1-point-ransac structure from motion for vehicle-mounted camer

* **Dependency**: OpenCV 2.4

Five-point algorithm (Nister's solver)
Five-point algorithm
----------

A implementation of the famous 5-point algorithm. Returns the estimated essential matrix. It is based on solver in the paper:
Expand All @@ -74,25 +74,6 @@ The code is based on the Matlab implementation from http://www.vis.uky.edu/~stew

* **Dependency**: OpenCV 2.4


Five-point algorithm (Groebner basis solver)
----------

Another implementation of the famous 5-point algorithm. Returns the estimated essential matrix. It is based on solver in the paper:

H. Stewenius, C. Engels, and D. Nister, “Recent developments on direct relative orientation,” ISPRS Journal of Photogrammetry and Remote Sensing, vol. 60, no. 4, pp. 284–294, 2006.

The code is based on the Matlab implementation from http://www.vis.uky.edu/~stewe/FIVEPOINT/.

* **Folder**: five-point-groebner/

* **API**: `Mat findEssentialMat( InputArray points1, InputArray points2, double focal = 1.0, Point2d pp = Point2d(0, 0),
int method = CV_RANSAC,
double prob = 0.999, double threshold = 1, OutputArray mask = noArray() ); `

* **Dependency**: OpenCV 2.4, Eigen (Contained in the package)


Small demo and compilation
----------

Expand Down
9 changes: 0 additions & 9 deletions five-point-groebner/CMakeLists.txt

This file was deleted.

81 changes: 0 additions & 81 deletions five-point-groebner/_modelest.h

This file was deleted.

0 comments on commit e65d4e6

Please sign in to comment.