ViSP  2.8.0
homographyHartleyDLT2DObject.cpp
1 /****************************************************************************
2  *
3  * $Id: homographyHartleyDLT2DObject.cpp 4056 2013-01-05 13:04:42Z fspindle $
4  *
5  * This file is part of the ViSP software.
6  * Copyright (C) 2005 - 2013 by INRIA. All rights reserved.
7  *
8  * This software is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * ("GPL") version 2 as published by the Free Software Foundation.
11  * See the file LICENSE.txt at the root directory of this source
12  * distribution for additional information about the GNU GPL.
13  *
14  * For using ViSP with software that can not be combined with the GNU
15  * GPL, please contact INRIA about acquiring a ViSP Professional
16  * Edition License.
17  *
18  * See http://www.irisa.fr/lagadic/visp/visp.html for more information.
19  *
20  * This software was developed at:
21  * INRIA Rennes - Bretagne Atlantique
22  * Campus Universitaire de Beaulieu
23  * 35042 Rennes Cedex
24  * France
25  * http://www.irisa.fr/lagadic
26  *
27  * If you have questions regarding the use of this file, please contact
28  * INRIA at visp@inria.fr
29  *
30  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
31  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
32  *
33  *
34  * Description:
35  * Example of the HartleyDLT homography estimation algorithm.
36  *
37  * Authors:
38  * Eric Marchand
39  *
40  *****************************************************************************/
58 #include <visp/vpMath.h>
59 #include <visp/vpRotationMatrix.h>
60 #include <visp/vpHomography.h>
61 #include <visp/vpDebug.h>
62 #include <visp/vpThetaUVector.h>
63 
64 #include <visp/vpPoint.h>
65 #include <visp/vpMath.h>
66 #include <visp/vpHomogeneousMatrix.h>
67 #include <visp/vpDebug.h>
68 #include <visp/vpParseArgv.h>
69 #include <stdlib.h>
70 // List of allowed command line options
71 #define GETOPTARGS "h"
72 
73 #define L 0.1
74 #define nbpt 5
75 
85 void usage(const char *name, const char *badparam)
86 {
87  fprintf(stdout, "\n\
88 Test the HartleyDLT homography estimation algorithm.\n\
89 \n\
90 SYNOPSIS\n\
91  %s [-h]\n", name);
92 
93  fprintf(stdout, "\n\
94 OPTIONS: Default\n\
95  -h\n\
96  Print the help.\n");
97 
98  if (badparam) {
99  fprintf(stderr, "ERROR: \n" );
100  fprintf(stderr, "\nBad parameter [%s]\n", badparam);
101  }
102 }
114 bool getOptions(int argc, const char **argv)
115 {
116  const char *optarg;
117  int c;
118  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg)) > 1) {
119 
120  switch (c) {
121  case 'h': usage(argv[0], NULL); return false; break;
122 
123  default:
124  usage(argv[0], optarg);
125  return false; break;
126  }
127  }
128 
129  if ((c == 1) || (c == -1)) {
130  // standalone param or error
131  usage(argv[0], NULL);
132  std::cerr << "ERROR: " << std::endl;
133  std::cerr << " Bad argument " << optarg << std::endl << std::endl;
134  return false;
135  }
136 
137  return true;
138 }
139 
140 
141 int
142 main(int argc, const char ** argv)
143 {
144  // Read the command line options
145  if (getOptions(argc, argv) == false) {
146  exit (-1);
147  }
148 
149  int i ;
150 
151  vpPoint P[nbpt] ; // Point to be tracked
152  double xa[nbpt], ya[nbpt] ;
153  double xb[nbpt], yb[nbpt] ;
154 
155  vpPoint aP[nbpt] ; // Point to be tracked
156  vpPoint bP[nbpt] ; // Point to be tracked
157 
158  P[0].setWorldCoordinates(-L,-L, 0 ) ;
159  P[1].setWorldCoordinates(2*L,-L, 0 ) ;
160  P[2].setWorldCoordinates(L,L, 0 ) ;
161  P[3].setWorldCoordinates(-L,3*L, 0 ) ;
162  P[4].setWorldCoordinates(0,0, 0 ) ;
163  /*
164  P[5].setWorldCoordinates(10,20, 0 ) ;
165  P[6].setWorldCoordinates(-10,12, 0 ) ;
166  */
167  vpHomogeneousMatrix bMo(0,0,1, 0,0,0) ;
168  vpHomogeneousMatrix aMb(1,0,0.0,vpMath::rad(10),0,vpMath::rad(40)) ;
169  vpHomogeneousMatrix aMo =aMb*bMo ;
170  for(i=0 ; i < nbpt ; i++)
171  {
172  P[i].project(aMo) ;
173  aP[i] = P[i] ;
174  xa[i] = P[i].get_x() ;
175  ya[i] = P[i].get_y() ;
176  }
177 
178  for(i=0 ; i < nbpt ; i++)
179  {
180  P[i].project(bMo) ;
181  bP[i] = P[i] ;
182  xb[i] = P[i].get_x() ;
183  yb[i] = P[i].get_y() ;
184  }
185  std::cout << "-------------------------------" <<std::endl ;
186  std::cout << "aMb "<<std::endl <<aMb << std::endl ;
187  std::cout << "-------------------------------" <<std::endl ;
188  vpHomography aHb ;
189 
190  vpHomography::HartleyDLT(nbpt,xb,yb,xa,ya,aHb) ;
191 
192  vpTRACE("aHb computed using the DLT algorithm") ;
193  aHb /= aHb[2][2] ;
194  std::cout << std::endl << aHb<< std::endl ;
195 
196  vpRotationMatrix aRb ;
197  vpTranslationVector aTb ;
198  vpColVector n ;
199 
200  std::cout << "-------------------------------" <<std::endl ;
201  vpTRACE("extract R, T and n ") ;
202  aHb.computeDisplacement(aRb, aTb, n) ;
203  std::cout << "Rotation: aRb" <<std::endl ;
204  std::cout << aRb << std::endl ;
205  std::cout << "Translation: aTb" <<std::endl;
206  std::cout << (aTb).t() <<std::endl ;
207  std::cout << "Normal to the plane: n" <<std::endl;
208  std::cout << (n).t() <<std::endl ;
209 
210 
211  std::cout << "-------------------------------" <<std::endl ;
212  vpTRACE("Compare with built homoraphy H = R + t/d ") ;
213  vpPlane bp(0,0,1,1) ;
214  vpHomography aHb_built(aMb,bp) ;
215  vpTRACE( "aHb built from the displacement ") ;
216  std::cout << std::endl <<aHb_built/aHb_built[2][2] << std::endl ;
217 
218  aHb_built.computeDisplacement(aRb, aTb, n) ;
219  std::cout << "Rotation: aRb" <<std::endl ;
220  std::cout << aRb << std::endl ;
221  std::cout << "Translation: aTb" <<std::endl;
222  std::cout << (aTb).t() <<std::endl ;
223  std::cout << "Normal to the plane: n" <<std::endl;
224  std::cout << (n).t() <<std::endl ;
225 
226  std::cout << "-------------------------------" <<std::endl ;
227  vpTRACE("test if ap = aHb bp") ;
228 
229  for(i=0 ; i < nbpt ; i++)
230  {
231  std::cout << "Point "<< i<< std::endl ;
232  vpPoint p ;
233  std::cout << "(" ;
234  std::cout << aP[i].get_x()/aP[i].get_w()<<", "<< aP[i].get_y()/aP[i].get_w() ;
235  std::cout <<") = (" ;
236  p = aHb*bP[i] ;
237  std::cout << p.get_x() /p.get_w()<<", "<< p.get_y()/ p.get_w() <<")"<<std::endl ;
238  }
239 }
The class provides a data structure for the homogeneous matrices as well as a set of operations on th...
#define vpTRACE
Definition: vpDebug.h:401
double get_y() const
Get the point y coordinate in the image plane.
Definition: vpPoint.h:138
double get_w() const
Get the point w coordinate in the image plane.
Definition: vpPoint.h:140
void computeDisplacement(vpRotationMatrix &aRb, vpTranslationVector &atb, vpColVector &n)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:79
Class that defines what is a point.
Definition: vpPoint.h:65
The vpRotationMatrix considers the particular case of a rotation matrix.
This class aims to compute the homography wrt.two images.
Definition: vpHomography.h:173
double get_x() const
Get the point x coordinate in the image plane.
Definition: vpPoint.h:136
static double rad(double deg)
Definition: vpMath.h:100
Class that provides a data structure for the column vectors as well as a set of operations on these v...
Definition: vpColVector.h:72
This class defines the container for a plane geometrical structure.
Definition: vpPlane.h:67
static void HartleyDLT(unsigned int n, double *xb, double *yb, double *xa, double *ya, vpHomography &aHb)
Computes the homography matrix using the DLT (Direct Linear Transform) algorithm on normalized data...
Class that consider the case of a translation vector.
void setWorldCoordinates(const double ox, const double oy, const double oz)
Set the point world coordinates. We mean here the coordinates of the point in the object frame...
Definition: vpPoint.cpp:74