Compute the pose of a 3D object using the Dementhon, Lagrange and Non-Linear approach.
#include <visp3/vision/vpPose.h>
#include <visp3/core/vpPoint.h>
#include <visp3/core/vpMath.h>
#include <visp3/core/vpTranslationVector.h>
#include <visp3/core/vpRxyzVector.h>
#include <visp3/core/vpRotationMatrix.h>
#include <visp3/core/vpHomogeneousMatrix.h>
#include <visp3/core/vpDebug.h>
#include <stdlib.h>
#include <stdio.h>
#define L 0.035
const std::string &legend);
{
std::cout << std::endl << legend << "\n "
<< "tx = " << cpo[0] << "\n "
<< "ty = " << cpo[1] << "\n "
<< "tz = " << cpo[2] << "\n "
<<
"tux = vpMath::rad(" <<
vpMath::deg(cpo[3]) <<
")\n "
<<
"tuy = vpMath::rad(" <<
vpMath::deg(cpo[4]) <<
")\n "
<<
"tuz = vpMath::rad(" <<
vpMath::deg(cpo[5]) <<
")\n"
<< std::endl;
}
const std::string &legend)
{
int fail = 0;
for(unsigned int i=0; i<6; i++) {
if (std::fabs(pose_ref[i]-pose_est[i]) > 0.001)
fail = 1;
}
std::cout << "Based on 3D parameters " << legend << " is " << (fail ? "badly" : "well") << " estimated" << std::endl;
if (pose.
listP.size() < 4) {
fail = 1;
std::cout << "Not enough point" << std::endl;
return fail;
}
r = sqrt(r)/pose.
listP.size();
fail = (r > 0.1) ? 1 : 0;
std::cout << "Based on 2D residual (" << r << ") " << legend << " is " << (fail ? "badly" : "well") << " estimated" << std::endl;
return fail;
}
int main()
{
try {
int test_fail = 0, fail = 0;
for(int i=0 ; i < 5 ; i++) {
}
print_pose(cMo_ref, std::string("Reference pose"));
std::cout <<"-------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Lagrange"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange");
test_fail |= fail;
std::cout <<"--------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Dementhon"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon");
test_fail |= fail;
std::cout <<"--------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Ransac"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Ransac");
test_fail |= fail;
std::cout <<"--------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Lagrange than Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange than Lowe");
test_fail |= fail;
std::cout <<"--------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Dementhon than Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon than Lowe");
test_fail |= fail;
std::cout <<"--------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by VVS");
test_fail |= fail;
std::cout <<"-------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Dementhon than by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon than by VVS");
test_fail |= fail;
std::cout <<"-------------------------------------------------"<<std::endl ;
print_pose(cMo, std::string("Pose estimated by Lagrange than by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange than by VVS");
test_fail |= fail;
std::cout << "\nGlobal pose estimation test " << (test_fail ? "fail" : "is ok") << std::endl;
return test_fail;
}
std::cout << "Catch an exception: " << e << std::endl;
return 1;
}
}