- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
为了更广泛的受众,我在这里重新发布了我在 answers.opencv.org 上提出的问题
TL;DR:传递给 undistortPoints
、findEssentialMat
和 recoverPose
的参数之间应该保持什么关系?
我的程序中有如下代码,K
和 dist_coefficients
是相机内在函数,imgpts.
匹配来自 2 个图像的特征点.
Mat mask; // inlier mask
undistortPoints(imgpts1, imgpts1, K, dist_coefficients, noArray(), K);
undistortPoints(imgpts2, imgpts2, K, dist_coefficients, noArray(), K);
Mat E = findEssentialMat(imgpts1, imgpts2, 1, Point2d(0,0), RANSAC, 0.999, 3, mask);
correctMatches(E, imgpts1, imgpts2, imgpts1, imgpts2);
recoverPose(E, imgpts1, imgpts2, R, t, 1.0, Point2d(0,0), mask);
在找到基本矩阵之前,我undistort
Points。该文档指出可以将新的相机矩阵作为最后一个参数传递。省略时,点位于标准化 坐标中(介于 -1 和 1 之间)。在那种情况下,我希望我将 1 作为焦距,将 (0,0) 作为主点传递给 findEssentialMat
,因为这些点已标准化。所以我认为这是方式:
可能性1(归一化坐标)
Mat mask; // inlier mask
undistortPoints(imgpts1, imgpts1, K, dist_coefficients);
undistortPoints(imgpts2, imgpts2, K, dist_coefficients);
Mat E = findEssentialMat(imgpts1, imgpts2, 1.0, Point2d(0,0), RANSAC, 0.999, 3, mask);
correctMatches(E, imgpts1, imgpts2, imgpts1, imgpts2);
recoverPose(E, imgpts1, imgpts2, R, t, 1.0, Point2d(0,0), mask);
可能性2(不归一化坐标)
Mat mask; // inlier mask
undistortPoints(imgpts1, imgpts1, K, dist_coefficients, noArray(), K);
undistortPoints(imgpts2, imgpts2, K, dist_coefficients, noArray(), K);
double focal = K.at<double>(0,0);
Point2d principalPoint(K.at<double>(0,2), K.at<double>(1,2));
Mat E = findEssentialMat(imgpts1, imgpts2, focal, principalPoint, RANSAC, 0.999, 3, mask);
correctMatches(E, imgpts1, imgpts2, imgpts1, imgpts2);
recoverPose(E, imgpts1, imgpts2, R, t, focal, principalPoint, mask);
但是,我发现,只有当我告诉 undistortPoints
旧相机矩阵仍然有效(我想在那种情况下只有失真被移除)并将参数传递给findEssentialMat
就好像这些点被归一化了,但事实并非如此。
这是错误、文档不足还是用户错误?
更新
可能是 correctedMatches
应该用(非标准化的)图像/像素坐标和基本矩阵调用,而不是 E,这可能是我计算中的另一个错误。可以通过F = K^-T * E * K^-1
最佳答案
事实证明,我的数据似乎已关闭。通过使用手动标记的对应关系,我确定可能性 1 和 2 确实是正确的,正如人们所期望的那样。
关于c++ - undistortPoints,findEssentialMat,recoverPose : What is the relation between their arguments?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31290414/
为了更广泛的受众,我在这里重新发布了我在 answers.opencv.org 上提出的问题 TL;DR:传递给 undistortPoints、findEssentialMat 和 recoverP
我正在尝试使用 OpenCV 2.4.9 中的新函数 findEssentialMat() 但是当我尝试编译我的程序时它说 findEssentialMat 没有定义。我包含了 calib3d 并且还
我是一名优秀的程序员,十分优秀!