five_point_algorithm

Five-Point Algorithm

A MATLAB implementation of the Five-Point Algorithm by David Nistér

Given five points matches between two images, and the intrinsic parameters of each camera. Estimate the essential matrix E, the rotation matrix R and translation vector t, between both images. This algorithm is based on the method described by David Nistér in "An Efficient Solution to the Five-Point Relative Pose Problem"

E_all = FIVE_POINT_ALGORITHM(pts1, pts2, K1, K2) returns in E all the valid essential matrix solutions for the five point correspondence. If you don't need R and t, use this version as it avoids computing unnecessary results.

[E_all, R_all, t_all, Eo_all] = FIVE_POINT_ALGORITHM(pts1, pts2, K1, K2) also returns in R_all and t_all all the rotation matrices and translation vectors of camera 2 for the different essential matrices, such that a 3D point in camera 1 reference frame can be transformed into the camera 2 reference frame through p_2 = R{n}*p_1 + t{n}. Eo_all is the essential matrix before the imposing the structure U*diag([1 1 0])*V'. It should help get a better feeling on the accuracy of the solution. All these return values a nx1 cell arrays.

Arguments:

pts1, pts2 – assumed to have dimension 2×5 and of equal size.

K1, K2 – 3×3 intrinsic parameters of cameras 1 and 2 respectively

Known Issues:

  • R and t computation is done assuming perfect point correspondence.

TODO:

  • Extract R and t from E
  • Provide example cases.
  • Extract R and t without perfect point correspondence
  • Augment example cases.
  • Implement the variant with 5 points over 3 images
  • Handle more than 5 points

Other Info

  • Author: Sérgio Agostinho – sergio(dot)r(dot)agostinho(at)gmail(dot)com
  • Date: Feb 2015
  • Last modified: Mar 2015
  • Version: 0.9

Feel free to provide feedback or contribute.

© 版权声明
THE END
喜欢就支持一下吧
点赞144 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容