ViSP  2.8.0
servoSimu3D_cdMc_CamVelocityWithoutVpServo.cpp
1 /****************************************************************************
2  *
3  * $Id: servoSimu3D_cdMc_CamVelocityWithoutVpServo.cpp 2457 2010-01-07 10:41:18Z nmelchio $
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  * Simulation of a 3D visual servoing.
36  *
37  * Authors:
38  * Eric Marchand
39  * Fabien Spindler
40  *
41  *****************************************************************************/
79 #include <stdlib.h>
80 #include <stdio.h>
81 #include <string>
82 
83 #include <visp/vpHomogeneousMatrix.h>
84 #include <visp/vpIoTools.h>
85 #include <visp/vpMath.h>
86 #include <visp/vpParseArgv.h>
87 #include <visp/vpSimulatorCamera.h>
88 #include <visp/vpThetaUVector.h>
89 #include <visp/vpTranslationVector.h>
90 
91 // List of allowed command line options
92 #define GETOPTARGS "h"
93 
102 void usage(const char *name, const char *badparam)
103 {
104  fprintf(stdout, "\n\
105 Simulation of a 3D visual servoing:\n\
106 - eye-in-hand control law,\n\
107 - velocity computed in the camera frame,\n\
108 - without display.\n\
109 \n\
110 SYNOPSIS\n\
111  %s [-h]\n", name);
112 
113  fprintf(stdout, "\n\
114 OPTIONS: Default\n\
115 \n\
116  -h\n\
117  Print the help.\n");
118 
119  if (badparam)
120  fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
121 }
122 
132 bool getOptions(int argc, const char **argv)
133 {
134  const char *optarg;
135  int c;
136  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg)) > 1) {
137 
138  switch (c) {
139  case 'h': usage(argv[0], NULL); return false; break;
140 
141  default:
142  usage(argv[0], optarg);
143  return false; break;
144  }
145  }
146 
147  if ((c == 1) || (c == -1)) {
148  // standalone param or error
149  usage(argv[0], NULL);
150  std::cerr << "ERROR: " << std::endl;
151  std::cerr << " Bad argument " << optarg << std::endl << std::endl;
152  return false;
153  }
154 
155  return true;
156 }
157 
158 int
159 main(int argc, const char ** argv)
160 {
161  // Read the command line options
162  if (getOptions(argc, argv) == false) {
163  exit (-1);
164  }
165  // Log file creation in /tmp/$USERNAME/log.dat
166  // This file contains by line:
167  // - the 6 computed camera velocities (m/s, rad/s) to achieve the task
168  // - the 6 values of s - s*
169  std::string username;
170  // Get the user login name
171  vpIoTools::getUserName(username);
172 
173  // Create a log filename to save velocities...
174  std::string logdirname;
175 #ifdef WIN32
176  logdirname ="C:/temp/" + username;
177 #else
178  logdirname ="/tmp/" + username;
179 #endif
180 
181  // Test if the output path exist. If no try to create it
182  if (vpIoTools::checkDirectory(logdirname) == false) {
183  try {
184  // Create the dirname
185  vpIoTools::makeDirectory(logdirname);
186  }
187  catch (...) {
188  std::cerr << std::endl
189  << "ERROR:" << std::endl;
190  std::cerr << " Cannot create " << logdirname << std::endl;
191  exit(-1);
192  }
193  }
194  std::string logfilename;
195  logfilename = logdirname + "/log.dat";
196 
197  // Open the log file name
198  std::ofstream flog(logfilename.c_str());
199 
200  vpSimulatorCamera robot ;
201 
202  std::cout << std::endl ;
203  std::cout << "-------------------------------------------------------" << std::endl ;
204  std::cout << " Test program without vpServo and vpFeature classes " <<std::endl ;
205  std::cout << " Eye-in-hand task control, velocity computed in the camera frame" << std::endl ;
206  std::cout << " Simulation " << std::endl ;
207  std::cout << " task : 3D visual servoing " << std::endl ;
208  std::cout << "-------------------------------------------------------" << std::endl ;
209  std::cout << std::endl ;
210 
211 
212  // Sets the initial camera location
213  vpPoseVector c_r_o(// Translation tx,ty,tz
214  0.1, 0.2, 2,
215  // ThetaU rotation
216  vpMath::rad(20), vpMath::rad(10), vpMath::rad(50) ) ;
217 
218  // From the camera pose build the corresponding homogeneous matrix
219  vpHomogeneousMatrix cMo(c_r_o) ;
220 
221  // Set the robot initial position
222  vpHomogeneousMatrix wMc, wMo;
223  robot.getPosition(wMc) ;
224  wMo = wMc * cMo; // Compute the position of the object in the world frame
225 
226  // Sets the desired camera location
227  vpPoseVector cd_r_o(// Translation tx,ty,tz
228  0, 0, 1,
229  // ThetaU rotation
231  // From the camera desired pose build the corresponding homogeneous matrix
232  vpHomogeneousMatrix cdMo(cd_r_o) ;
233 
234  vpHomogeneousMatrix cdMc; // Transformation between desired and current camera frame
235  vpRotationMatrix cdRc; // Rotation between desired and current camera frame
236  vpRotationMatrix cRcd; // Rotation between current and desired camera frame
237 
238  // Set the constant gain of the servo
239  double lambda = 1;
240 
241  unsigned int iter=0 ;
242  // Start the visual servoing loop. We stop the servo after 200 iterations
243  while(iter++ < 200) {
244  std::cout << "-----------------------------------" << iter <<std::endl ;
245 
246  // get the robot position
247  robot.getPosition(wMc) ;
248  // Compute the position of the camera wrt the object frame
249  cMo = wMc.inverse() * wMo;
250 
251  // new displacement to achieve
252  cdMc = cdMo*cMo.inverse() ;
253 
254  // Extract the translation vector c*tc which is the current
255  // translational visual feature.
256  vpTranslationVector cdtc;
257  cdMc.extract(cdtc);
258  // Extract the rotation matrix c*Rc
259  cdMc.extract(cdRc);
260  // Compute the inverse rotation cRc* (in fact the transpose of c*Rc)
261  cRcd = cdRc.inverse();
262  // Compute the current theta U visual feature
263  vpThetaUVector tu_cdRc(cdMc);
264  // Compute the camera translational velocity
265  vpColVector v(3);
266  v = -lambda * cRcd * cdtc;
267  // Compute the camera rotational velocity
268  vpColVector w(3);
269  w = -lambda * tu_cdRc;
270 
271  // Update the complete camera velocity vector
272  vpColVector velocity(6);
273  for (unsigned int i=0; i<3; i++) {
274  velocity[i] = v[i]; // Translational velocity
275  velocity[i+3] = w[i]; // Rotational velocity
276  }
277 
278  // Send the camera velocity to the controller
279  robot.setVelocity(vpRobot::CAMERA_FRAME, velocity) ;
280 
281  // Retrieve the error (s-s*)
282  std::cout << "|| s - s* || = " << cdtc.t() << " " << tu_cdRc.t() << std::endl;
283 
284  // Save log
285  flog << velocity.t() << " " << cdtc.t() << " " << tu_cdRc.t() << std::endl;
286  }
287  // Close the log file
288  flog.close();
289 }
290 
vpRotationMatrix inverse() const
invert the rotation matrix
static bool checkDirectory(const char *dirname)
Definition: vpIoTools.cpp:335
The class provides a data structure for the homogeneous matrices as well as a set of operations on th...
Class that defines the simplest robot: a free flying camera.
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:79
The vpRotationMatrix considers the particular case of a rotation matrix.
static void makeDirectory(const char *dirname)
Definition: vpIoTools.cpp:404
static std::string getUserName()
Definition: vpIoTools.cpp:140
void extract(vpRotationMatrix &R) const
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
The pose is a complete representation of every rigid motion in the euclidian space.
Definition: vpPoseVector.h:92
vpHomogeneousMatrix inverse() const
Class that consider the case of a translation vector.
Class that consider the case of the parameterization for the rotation.