Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
servoSimuCircle2DCamVelocity.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  * Simulation of a 2D visual servoing on a circle.
33  *
34  * Authors:
35  * Eric Marchand
36  * Fabien Spindler
37  *
38  *****************************************************************************/
57 #include <stdio.h>
58 #include <stdlib.h>
59 
60 #include <visp3/core/vpCircle.h>
61 #include <visp3/core/vpHomogeneousMatrix.h>
62 #include <visp3/core/vpMath.h>
63 #include <visp3/io/vpParseArgv.h>
64 #include <visp3/robot/vpSimulatorCamera.h>
65 #include <visp3/visual_features/vpFeatureBuilder.h>
66 #include <visp3/visual_features/vpFeatureEllipse.h>
67 #include <visp3/vs/vpServo.h>
68 
69 // List of allowed command line options
70 #define GETOPTARGS "h"
71 
72 void usage(const char *name, const char *badparam);
73 bool getOptions(int argc, const char **argv);
74 
83 void usage(const char *name, const char *badparam)
84 {
85  fprintf(stdout, "\n\
86 Simulation of a 2D visual servoing on a circle:\n\
87 - eye-in-hand control law,\n\
88 - velocity computed in the camera frame,\n\
89 - without display.\n\
90  \n\
91 SYNOPSIS\n\
92  %s [-h]\n", name);
93 
94  fprintf(stdout, "\n\
95 OPTIONS: Default\n\
96  \n\
97  -h\n\
98  Print the help.\n");
99 
100  if (badparam)
101  fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
102 }
103 
113 bool getOptions(int argc, const char **argv)
114 {
115  const char *optarg_;
116  int c;
117  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg_)) > 1) {
118 
119  switch (c) {
120  case 'h':
121  usage(argv[0], NULL);
122  return false;
123  break;
124 
125  default:
126  usage(argv[0], optarg_);
127  return false;
128  break;
129  }
130  }
131 
132  if ((c == 1) || (c == -1)) {
133  // standalone param or error
134  usage(argv[0], NULL);
135  std::cerr << "ERROR: " << std::endl;
136  std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
137  return false;
138  }
139 
140  return true;
141 }
142 
143 int main(int argc, const char **argv)
144 {
145  try {
146  // Read the command line options
147  if (getOptions(argc, argv) == false) {
148  exit(-1);
149  }
150 
151  vpServo task;
152  vpSimulatorCamera robot;
153 
154  std::cout << std::endl;
155  std::cout << "-------------------------------------------------------" << std::endl;
156  std::cout << " Test program for vpServo " << std::endl;
157  std::cout << " Simulation " << std::endl;
158  std::cout << " task : servo a circle " << std::endl;
159  std::cout << "-------------------------------------------------------" << std::endl;
160  std::cout << std::endl;
161 
162  // sets the initial camera location
164  cMo[0][3] = 0.1;
165  cMo[1][3] = 0.2;
166  cMo[2][3] = 2;
167 
168  vpHomogeneousMatrix wMc, wMo;
169  robot.getPosition(wMc);
170  wMo = wMc * cMo; // Compute the position of the object in the world frame
171 
172  vpHomogeneousMatrix cMod;
173  cMod[0][3] = 0;
174  cMod[1][3] = 0;
175  cMod[2][3] = 1;
176 
177  // sets the circle coordinates in the world frame
178  vpCircle circle;
179  circle.setWorldCoordinates(0, 0, 1, 0, 0, 0, 0.1);
180 
181  // sets the desired position of the visual feature
182  vpFeatureEllipse pd;
183  circle.track(cMod);
184  vpFeatureBuilder::create(pd, circle);
185 
186  // project : computes the circle coordinates in the camera frame and its
187  // 2D coordinates
188 
189  // sets the current position of the visual feature
191  circle.track(cMo);
192  vpFeatureBuilder::create(p, circle);
193 
194  // define the task
195  // - we want an eye-in-hand control law
196  // - robot is controlled in the camera frame
198 
199  // - we want to see a circle on a circle
200  std::cout << std::endl;
201  task.addFeature(p, pd);
202 
203  // - set the gain
204  task.setLambda(1);
205 
206  // Display task information
207  task.print();
208 
209  unsigned int iter = 0;
210  // loop
211  while (iter++ < 500) {
212  std::cout << "---------------------------------------------" << iter << std::endl;
213  vpColVector v;
214 
215  // get the robot position
216  robot.getPosition(wMc);
217  // Compute the position of the object frame in the camera frame
218  cMo = wMc.inverse() * wMo;
219 
220  // new circle position: retrieve x,y and Z of the vpCircle structure
221  circle.track(cMo);
222  vpFeatureBuilder::create(p, circle);
223 
224  // compute the control law
225  v = task.computeControlLaw();
226  std::cout << "task rank: " << task.getTaskRank() << std::endl;
227  // send the camera velocity to the controller
229 
230  std::cout << "|| s - s* || = " << (task.getError()).sumSquare() << std::endl;
231  }
232 
233  // Display task information
234  task.print();
235  task.kill();
236  return EXIT_SUCCESS;
237  } catch (const vpException &e) {
238  std::cout << "Catch a ViSP exception: " << e << std::endl;
239  return EXIT_FAILURE;
240  }
241 }
unsigned int getTaskRank() const
Definition: vpServo.cpp:1821
void setVelocity(const vpRobot::vpControlFrameType frame, const vpColVector &vel)
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class that defines the simplest robot: a free flying camera.
void addFeature(vpBasicFeature &s, vpBasicFeature &s_star, unsigned int select=vpBasicFeature::FEATURE_ALL)
Definition: vpServo.cpp:497
error that can be emited by ViSP classes.
Definition: vpException.h:71
void track(const vpHomogeneousMatrix &cMo)
vpHomogeneousMatrix inverse() const
vpHomogeneousMatrix getPosition() const
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:69
void kill()
Definition: vpServo.cpp:192
vpColVector computeControlLaw()
Definition: vpServo.cpp:935
void setLambda(double c)
Definition: vpServo.h:406
Implementation of column vector and the associated operations.
Definition: vpColVector.h:130
void print(const vpServo::vpServoPrintType display_level=ALL, std::ostream &os=std::cout)
Definition: vpServo.cpp:313
vpColVector getError() const
Definition: vpServo.h:282
Class that defines 2D ellipse visual feature.
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
Class that defines what is a circle.
Definition: vpCircle.h:58
void setServo(const vpServoType &servo_type)
Definition: vpServo.cpp:223
void setWorldCoordinates(const vpColVector &oP)
Definition: vpCircle.cpp:61