Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
testFindMatch.cpp
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2019 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See http://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * Compute the pose of a 3D object using the Dementhon method. Assuming that
33  * the correspondance between 2D points and 3D points is not done, we use
34  * the RANSAC algorithm to achieve this task
35  *
36  * Authors:
37  * Aurelien Yol
38  *
39  *****************************************************************************/
40 
41 #include <visp3/core/vpHomogeneousMatrix.h>
42 #include <visp3/core/vpMath.h>
43 #include <visp3/core/vpPoint.h>
44 #include <visp3/vision/vpPose.h>
45 
46 #include <stdio.h>
47 #include <stdlib.h>
48 
49 #define L 0.1
50 
58 int main()
59 {
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;
113  } catch (const vpException &e) {
114  std::cout << "Catch an exception: " << e << std::endl;
115  return 1;
116  }
117 }
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, bool(*func)(const vpHomogeneousMatrix &)=NULL)
Implementation of an homogeneous matrix and operations on such kind of matrices.
error that can be emited by ViSP classes.
Definition: vpException.h:71
Class that defines what is a point.
Definition: vpPoint.h:58
static double rad(double deg)
Definition: vpMath.h:108
double get_x() const
Get the point x coordinate in the image plane.
Definition: vpPoint.cpp:431
Implementation of a pose vector and operations on poses.
Definition: vpPoseVector.h:151
double get_y() const
Get the point y coordinate in the image plane.
Definition: vpPoint.cpp:433
vpRowVector t() const