Compute the pose of a 3D object using the Dementhon, Lagrange and Non-Linear approach.
#include <visp3/core/vpDebug.h>
#include <visp3/core/vpHomogeneousMatrix.h>
#include <visp3/core/vpMath.h>
#include <visp3/core/vpPoint.h>
#include <visp3/core/vpRotationMatrix.h>
#include <visp3/core/vpRxyzVector.h>
#include <visp3/core/vpTranslationVector.h>
#include <visp3/vision/vpPose.h>
#include <stdio.h>
#include <stdlib.h>
#define L 0.035
#define L2 0.1
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.001) ? 1 : 0;
std::cout << "Based on 2D residual (" << r << ") " << legend << " is " << (fail ? "badly" : "well") << " estimated"
<< std::endl;
return fail;
}
int main()
{
try {
int test_planar_fail = 0, test_non_planar_fail = 0, fail = 0;
{
std::cout << "Start test considering planar case with 4 points..." << std::endl;
std::cout << "===================================================" << std::endl;
int npt = 4;
std::vector<vpPoint> P(npt);
double Z = 0.05;
P[0].setWorldCoordinates(-L, -L, Z);
P[1].setWorldCoordinates( L, -L, Z);
P[2].setWorldCoordinates( L, L, Z);
P[3].setWorldCoordinates(-L, L, Z);
for (int i = 0; i < npt; i++) {
P[i].project(cMo_ref);
}
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_planar_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_planar_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_planar_fail |= fail;
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Lagrange then Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange then Lowe");
test_planar_fail |= fail;
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then Lowe");
test_planar_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_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then by VVS");
test_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Lagrange then by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange then by VVS");
test_planar_fail |= fail;
}
{
std::cout << "\nStart test considering non-planar case with 6 points..." << std::endl;
std::cout << "=======================================================" << std::endl;
int npt = 6;
std::vector<vpPoint> P(npt);
P[0].setWorldCoordinates(-L, -L, 0);
P[0].setWorldCoordinates(-L, -L, -0.02);
P[1].setWorldCoordinates( L, -L, 0);
P[2].setWorldCoordinates( L, L, 0);
P[3].setWorldCoordinates(-2 * L, 3 * L, 0);
P[4].setWorldCoordinates(-L, L, 0.01);
P[5].setWorldCoordinates( L, L/2., 0.03);
for (int i = 0; i < npt; i++) {
P[i].project(cMo_ref);
}
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_non_planar_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_non_planar_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_non_planar_fail |= fail;
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Lagrange then Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange then Lowe");
test_non_planar_fail |= fail;
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then Lowe");
test_non_planar_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_non_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then by VVS");
test_non_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Lagrange then by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Lagrange then by VVS");
test_non_planar_fail |= fail;
}
std::cout << "\nStart test considering non-planar case with 4 points..." << std::endl;
std::cout << "=======================================================" << std::endl;
{
int npt = 4;
std::vector<vpPoint> P(npt);
P[0].setWorldCoordinates(-L2, -L2, 0);
P[1].setWorldCoordinates( L2, -L2, 0.2);
P[2].setWorldCoordinates( L2, L2, -0.1);
P[3].setWorldCoordinates(-L2, L2, 0);
for (int i = 0; i < npt; i++) {
P[i].project(cMo_ref);
}
print_pose(cMo_ref, std::string("Reference pose"));
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon");
test_non_planar_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_non_planar_fail |= fail;
std::cout << "--------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then Lowe"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then Lowe");
test_non_planar_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_non_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
print_pose(cMo, std::string("Pose estimated by Dementhon then by VVS"));
fail = compare_pose(pose, cMo_ref, cMo, "pose by Dementhon then by VVS");
test_non_planar_fail |= fail;
std::cout << "-------------------------------------------------" << std::endl;
}
std::cout << "=======================================================" << std::endl;
std::cout << "Pose estimation test from planar points: " << (test_planar_fail ? "fail" : "is ok") << std::endl;
std::cout << "Pose estimation test from non-planar points: " << (test_non_planar_fail ? "fail" : "is ok") << std::endl;
std::cout << "Global pose estimation test: " << ((test_planar_fail | test_non_planar_fail) ? "fail" : "is ok") << std::endl;
return ((test_planar_fail | test_non_planar_fail) ? EXIT_FAILURE : EXIT_SUCCESS);
std::cout << "Catch an exception: " << e << std::endl;
return EXIT_FAILURE;
}
}