fix wrong index

This commit is contained in:
Tomoaki Teshima 2021-01-24 20:29:52 +09:00
parent 6256e425f3
commit 3cfe7b9af9

View File

@ -283,7 +283,7 @@ void cv::cuda::solvePnPRansac(const Mat& object, const Mat& image, const Mat& ca
p_transf.z = rot[6] * p.x + rot[7] * p.y + rot[8] * p.z + transl[2];
p_proj.x = p_transf.x / p_transf.z;
p_proj.y = p_transf.y / p_transf.z;
if (norm(p_proj - image_normalized.at<Point2f>(0, i)) < max_dist)
if (norm(p_proj - image_normalized.at<Point2f>(i)) < max_dist)
inliers->push_back(i);
}
}