mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
Merge pull request #19253 from mightbxg:bugfix_PnPRansac
* fix unexpected Exception in solvePnPRansac caused by input points * calib3d: solvePnPRansac - keep minimal changes to handle DLT 6 points requirement Co-authored-by: Alexander Alekhin <alexander.a.alekhin@gmail.com>
This commit is contained in:
@@ -837,6 +837,43 @@ TEST(Calib3d_SolvePnPRansac, double_support)
|
||||
EXPECT_LE(cvtest::norm(t, Mat_<double>(tF), NORM_INF), 1e-3);
|
||||
}
|
||||
|
||||
TEST(Calib3d_SolvePnPRansac, bad_input_points_19253)
|
||||
{
|
||||
// with this specific data
|
||||
// when computing the final pose using points in the consensus set with SOLVEPNP_ITERATIVE and solvePnP()
|
||||
// an exception is thrown from solvePnP because there are 5 non-coplanar 3D points and the DLT algorithm needs at least 6 non-coplanar 3D points
|
||||
// with PR #19253 we choose to return true, with the pose estimated from the MSS stage instead of throwing the exception
|
||||
|
||||
float pts2d_[] = {
|
||||
-5.38358629e-01f, -5.09638414e-02f,
|
||||
-5.07192254e-01f, -2.20743284e-01f,
|
||||
-5.43107152e-01f, -4.90474701e-02f,
|
||||
-5.54325163e-01f, -1.86715424e-01f,
|
||||
-5.59334219e-01f, -4.01909500e-02f,
|
||||
-5.43504596e-01f, -4.61776406e-02f
|
||||
};
|
||||
Mat pts2d(6, 2, CV_32FC1, pts2d_);
|
||||
|
||||
float pts3d_[] = {
|
||||
-3.01153604e-02f, -1.55665115e-01f, 4.50000018e-01f,
|
||||
4.27827090e-01f, 4.28645730e-01f, 1.08600008e+00f,
|
||||
-3.14165242e-02f, -1.52656138e-01f, 4.50000018e-01f,
|
||||
-1.46217480e-01f, 5.57961613e-02f, 7.17000008e-01f,
|
||||
-4.89348806e-02f, -1.38795510e-01f, 4.47000027e-01f,
|
||||
-3.13065052e-02f, -1.52636901e-01f, 4.51000035e-01f
|
||||
};
|
||||
Mat pts3d(6, 3, CV_32FC1, pts3d_);
|
||||
|
||||
Mat camera_mat = Mat::eye(3, 3, CV_64FC1);
|
||||
Mat rvec, tvec;
|
||||
vector<int> inliers;
|
||||
|
||||
// solvePnPRansac will return true with 5 inliers, which means the result is from MSS stage.
|
||||
bool result = solvePnPRansac(pts3d, pts2d, camera_mat, noArray(), rvec, tvec, false, 100, 4.f / 460.f, 0.99, inliers);
|
||||
EXPECT_EQ(inliers.size(), size_t(5));
|
||||
EXPECT_TRUE(result);
|
||||
}
|
||||
|
||||
TEST(Calib3d_SolvePnP, input_type)
|
||||
{
|
||||
Matx33d intrinsics(5.4794130238156129e+002, 0., 2.9835545700043139e+002, 0.,
|
||||
|
||||
Reference in New Issue
Block a user