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>
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>
71 #define GETOPTARGS "h"
85 void usage(
const char *name,
const char *badparam)
88 Test the HartleyDLT homography estimation algorithm.\n\
99 fprintf(stderr,
"ERROR: \n" );
100 fprintf(stderr,
"\nBad parameter [%s]\n", badparam);
114 bool getOptions(
int argc,
const char **argv)
121 case 'h': usage(argv[0], NULL);
return false;
break;
124 usage(argv[0], optarg);
129 if ((c == 1) || (c == -1)) {
131 usage(argv[0], NULL);
132 std::cerr <<
"ERROR: " << std::endl;
133 std::cerr <<
" Bad argument " << optarg << std::endl << std::endl;
142 main(
int argc,
const char ** argv)
145 if (getOptions(argc, argv) ==
false) {
152 double xa[nbpt], ya[nbpt] ;
153 double xb[nbpt], yb[nbpt] ;
170 for(i=0 ; i < nbpt ; i++)
174 xa[i] = P[i].
get_x() ;
175 ya[i] = P[i].
get_y() ;
178 for(i=0 ; i < nbpt ; i++)
182 xb[i] = P[i].
get_x() ;
183 yb[i] = P[i].
get_y() ;
185 std::cout <<
"-------------------------------" <<std::endl ;
186 std::cout <<
"aMb "<<std::endl <<aMb << std::endl ;
187 std::cout <<
"-------------------------------" <<std::endl ;
192 vpTRACE(
"aHb computed using the DLT algorithm") ;
194 std::cout << std::endl << aHb<< std::endl ;
200 std::cout <<
"-------------------------------" <<std::endl ;
201 vpTRACE(
"extract R, T and 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 ;
211 std::cout <<
"-------------------------------" <<std::endl ;
212 vpTRACE(
"Compare with built homoraphy H = R + t/d ") ;
215 vpTRACE(
"aHb built from the displacement ") ;
216 std::cout << std::endl <<aHb_built/aHb_built[2][2] << std::endl ;
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 ;
226 std::cout <<
"-------------------------------" <<std::endl ;
227 vpTRACE(
"test if ap = aHb bp") ;
229 for(i=0 ; i < nbpt ; i++)
231 std::cout <<
"Point "<< i<< std::endl ;
235 std::cout <<
") = (" ;
The class provides a data structure for the homogeneous matrices as well as a set of operations on th...
double get_y() const
Get the point y coordinate in the image plane.
double get_w() const
Get the point w coordinate in the image plane.
void computeDisplacement(vpRotationMatrix &aRb, vpTranslationVector &atb, vpColVector &n)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Class that defines what is a point.
The vpRotationMatrix considers the particular case of a rotation matrix.
This class aims to compute the homography wrt.two images.
double get_x() const
Get the point x coordinate in the image plane.
static double rad(double deg)
Class that provides a data structure for the column vectors as well as a set of operations on these v...
This class defines the container for a plane geometrical structure.
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...