You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this code base is fairly outdated and at the time it was mostly just a compilation of various clippings from the opencv docs.
I would recommend looking there for updated code as I'm node sure what the correct way fo doing things is now.
Regarding the computeReprojection error:
current code is as below :
err = cv::norm(cv::Mat(imagePoints[i]), cv::Mat(imagePoints2), cv::NormTypes::NORM_L2);
is it need to be divide by the objectPoints size?
err = cv::norm(cv::Mat(imagePoints[i]), cv::Mat(imagePoints2), cv::NormTypes::NORM_L2)/ objectPoints[i].size();
The text was updated successfully, but these errors were encountered: