Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
testFindMatch.cpp
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2024 by Inria. All rights reserved.
4  *
5  * This software is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See https://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * Compute the pose of a 3D object using the Dementhon method. Assuming that
32  * the correspondence between 2D points and 3D points is not done, we use
33  * the RANSAC algorithm to achieve this task
34  */
35 
36 #include <visp3/core/vpHomogeneousMatrix.h>
37 #include <visp3/core/vpMath.h>
38 #include <visp3/core/vpPoint.h>
39 #include <visp3/vision/vpPose.h>
40 
41 #include <stdio.h>
42 #include <stdlib.h>
43 
44 #define L 0.1
45 
53 int main()
54 {
55 #ifdef ENABLE_VISP_NAMESPACE
56  using namespace VISP_NAMESPACE_NAME;
57 #endif
58 
59 #if (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
60  try {
61  std::cout << "Find Matches using Ransac" << std::endl;
62  std::vector<vpPoint> P;
63 
64  P.push_back(vpPoint(-L, -L, 0));
65  P.push_back(vpPoint(L, -L, 0));
66  P.push_back(vpPoint(L, L, 0));
67  P.push_back(vpPoint(-L, L, 0));
68  P.push_back(vpPoint(-0, L / 2., L));
69 
70  vpHomogeneousMatrix cMo_ref(0, 0.2, 1, vpMath::rad(3), vpMath::rad(-2), vpMath::rad(10));
71 
72  std::vector<vpPoint> p(P.size());
73  for (unsigned int i = 0; i < P.size(); i++) {
74  vpPoint pt = P[i];
75  pt.project(cMo_ref);
76  p[i].set_x(pt.get_x());
77  p[i].set_y(pt.get_y());
78  }
79 
80  unsigned int ninliers;
81  std::vector<vpPoint> inliers;
82  double threshold = 1e-6;
83  unsigned int nbInlierToReachConsensus = (unsigned int)(P.size());
84 
86 
87  vpPose::findMatch(p, P, nbInlierToReachConsensus, threshold, ninliers, inliers, cMo);
88 
89  std::cout << "Inliers: " << std::endl;
90  for (unsigned int i = 0; i < inliers.size(); i++) {
91  inliers[i].print();
92  std::cout << std::endl;
93  }
94 
95  std::cout << "cMo :\n" << vpPoseVector(cMo).t() << std::endl << std::endl;
96 
97  vpPoseVector pose_ref = vpPoseVector(cMo_ref);
98  vpPoseVector pose_est = vpPoseVector(cMo);
99 
100  std::cout << std::endl;
101  std::cout << "reference cMo :\n" << pose_ref.t() << std::endl << std::endl;
102  std::cout << "estimated cMo :\n" << pose_est.t() << std::endl << std::endl;
103 
104  int test_fail = 0;
105  for (unsigned int i = 0; i < 6; i++) {
106  if (std::fabs(pose_ref[i] - pose_est[i]) > 0.001)
107  test_fail = 1;
108  }
109 
110  std::cout << "Matching is " << (test_fail ? "badly" : "well") << " performed" << std::endl;
111 
112  return (test_fail ? EXIT_FAILURE : EXIT_SUCCESS);
113  }
114  catch (const vpException &e) {
115  std::cout << "Catch an exception: " << e << std::endl;
116  return EXIT_FAILURE;
117  }
118 #else
119  std::cout << "Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
120  return EXIT_SUCCESS;
121 #endif
122 }
error that can be emitted by ViSP classes.
Definition: vpException.h:60
Implementation of an homogeneous matrix and operations on such kind of matrices.
static double rad(double deg)
Definition: vpMath.h:129
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
Definition: vpPoint.h:79
double get_y() const
Get the point y coordinate in the image plane.
Definition: vpPoint.cpp:422
double get_x() const
Get the point x coordinate in the image plane.
Definition: vpPoint.cpp:420
Implementation of a pose vector and operations on poses.
Definition: vpPoseVector.h:203
vpRowVector t() const
static void findMatch(std::vector< vpPoint > &p2D, std::vector< vpPoint > &p3D, const unsigned int &numberOfInlierToReachAConsensus, const double &threshold, unsigned int &ninliers, std::vector< vpPoint > &listInliers, vpHomogeneousMatrix &cMo, const int &maxNbTrials=10000, bool useParallelRansac=true, unsigned int nthreads=0, FuncCheckValidityPose func=nullptr)