Compute the pose of a 3D object using the Ransac method.
#include <visp3/core/vpHomogeneousMatrix.h>
#include <visp3/core/vpMath.h>
#include <visp3/core/vpPoint.h>
#include <visp3/vision/vpPose.h>
#include <stdio.h>
#include <stdlib.h>
#define L 0.1
int main()
{
#if (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
try {
std::cout << "Pose computation with matched points" << std::endl;
std::vector<vpPoint> P;
double L2 = L * 3.0;
for (size_t i = 0; i < P.size(); i++) {
P[i].project(cMo_ref);
P[i].print();
std::cout << std::endl;
}
double error = 0.01;
P[3].set_y(P[3].get_y() + 2 * error);
P[6].set_x(P[6].get_x() + error);
for (size_t i = 0; i < P.size(); i++)
unsigned int nbInlierToReachConsensus = (unsigned int)(75.0 * (double)(P.size()) / 100.0);
double threshold = 0.001;
std::cout << "Inliers: " << std::endl;
for (unsigned int i = 0; i < inliers.size(); i++) {
inliers[i].print();
std::cout << std::endl;
}
std::cout << std::endl;
std::cout <<
"reference cMo :\n" << pose_ref.
t() << std::endl << std::endl;
std::cout <<
"estimated cMo :\n" << pose_est.
t() << std::endl << std::endl;
int test_fail = 0;
for (unsigned int i = 0; i < 6; i++) {
if (std::fabs(pose_ref[i] - pose_est[i]) > 0.001)
test_fail = 1;
}
std::cout << "Pose is " << (test_fail ? "badly" : "well") << " estimated" << std::endl;
return (test_fail ? EXIT_FAILURE : EXIT_SUCCESS);
std::cout << "Catch an exception: " << e << std::endl;
return EXIT_FAILURE;
}
#else
std::cout << "Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
return EXIT_SUCCESS;
#endif
}
error that can be emitted by ViSP classes.
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
Implementation of a pose vector and operations on poses.
Class used for pose computation from N points (pose from point only). Some of the algorithms implemen...
void addPoint(const vpPoint &P)
void setRansacNbInliersToReachConsensus(const unsigned int &nbC)
bool computePose(vpPoseMethodType method, vpHomogeneousMatrix &cMo, bool(*func)(const vpHomogeneousMatrix &)=NULL)
std::vector< vpPoint > getRansacInliers() const
void setRansacThreshold(const double &t)