Compute the pose of a 3D object using the Dementhon, Lagrange and Non-Linear approach.
#include <visp/vpPose.h>
#include <visp/vpPoint.h>
#include <visp/vpMath.h>
#include <visp/vpTranslationVector.h>
#include <visp/vpRxyzVector.h>
#include <visp/vpRotationMatrix.h>
#include <visp/vpHomogeneousMatrix.h>
#include <visp/vpDebug.h>
#include <visp/vpParseArgv.h>
#include <stdlib.h>
#include <stdio.h>
#define GETOPTARGS "h"
#define L 0.035
void usage(const char *name, const char *badparam);
bool getOptions(int argc, const char **argv);
const std::string &legend);
void usage(const char *name, const char *badparam)
{
fprintf(stdout, "\n\
Compute the pose of a 3D object using the Dementhon, Lagrange and\n\
Non-Linear approach.\n\
\n\
SYNOPSIS\n\
%s [-h]\n", name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-h\n\
Print the help.\n");
if (badparam)
fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
}
bool getOptions(int argc, const char **argv)
{
const char *optarg_;
int c;
switch (c) {
case 'h': usage(argv[0], NULL); return false; break;
default:
usage(argv[0], optarg_);
return false; break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], NULL);
std::cerr << "ERROR: " << std::endl;
std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
return false;
}
return true;
}
{
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(int argc, const char ** argv)
{
try {
if (getOptions(argc, argv) == false) {
exit (-1);
}
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;
}
}