Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
servoSimuCircle2DCamVelocityDisplay.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  *****************************************************************************/
39 
50 #include <visp3/core/vpConfig.h>
51 #include <visp3/core/vpDebug.h>
52 
53 #if (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GTK) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
54 
55 #include <stdio.h>
56 #include <stdlib.h>
57 
58 #include <visp3/core/vpCameraParameters.h>
59 #include <visp3/core/vpCircle.h>
60 #include <visp3/core/vpHomogeneousMatrix.h>
61 #include <visp3/core/vpImage.h>
62 #include <visp3/core/vpMath.h>
63 #include <visp3/gui/vpDisplayGDI.h>
64 #include <visp3/gui/vpDisplayGTK.h>
65 #include <visp3/gui/vpDisplayOpenCV.h>
66 #include <visp3/gui/vpDisplayX.h>
67 #include <visp3/io/vpParseArgv.h>
68 #include <visp3/robot/vpSimulatorCamera.h>
69 #include <visp3/visual_features/vpFeatureBuilder.h>
70 #include <visp3/visual_features/vpFeatureLine.h>
71 #include <visp3/vs/vpServo.h>
72 #include <visp3/vs/vpServoDisplay.h>
73 
74 // List of allowed command line options
75 #define GETOPTARGS "cdh"
76 
77 void usage(const char *name, const char *badparam);
78 bool getOptions(int argc, const char **argv, bool &click_allowed, bool &display);
79 
88 void usage(const char *name, const char *badparam)
89 {
90  fprintf(stdout, "\n\
91 Simulation of a 2D visual servoing on a circle:\n\
92 - eye-in-hand control law,\n\
93 - velocity computed in the camera frame,\n\
94 - display the camera view.\n\
95  \n\
96 SYNOPSIS\n\
97  %s [-c] [-d] [-h]\n", name);
98 
99  fprintf(stdout, "\n\
100 OPTIONS: Default\n\
101  \n\
102  -c\n\
103  Disable the mouse click. Useful to automaze the \n\
104  execution of this program without humain intervention.\n\
105  \n\
106  -d \n\
107  Turn off the display.\n\
108  \n\
109  -h\n\
110  Print the help.\n");
111 
112  if (badparam) {
113  fprintf(stderr, "ERROR: \n");
114  fprintf(stderr, "\nBad parameter [%s]\n", badparam);
115  }
116 }
117 
130 bool getOptions(int argc, const char **argv, bool &click_allowed, bool &display)
131 {
132  const char *optarg_;
133  int c;
134  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg_)) > 1) {
135 
136  switch (c) {
137  case 'c':
138  click_allowed = false;
139  break;
140  case 'd':
141  display = false;
142  break;
143  case 'h':
144  usage(argv[0], NULL);
145  return false;
146  break;
147 
148  default:
149  usage(argv[0], optarg_);
150  return false;
151  break;
152  }
153  }
154 
155  if ((c == 1) || (c == -1)) {
156  // standalone param or error
157  usage(argv[0], NULL);
158  std::cerr << "ERROR: " << std::endl;
159  std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
160  return false;
161  }
162 
163  return true;
164 }
165 
166 int main(int argc, const char **argv)
167 {
168  try {
169  bool opt_display = true;
170  bool opt_click_allowed = true;
171 
172  // Read the command line options
173  if (getOptions(argc, argv, opt_click_allowed, opt_display) == false) {
174  return(EXIT_FAILURE);
175  }
176 
177  vpImage<unsigned char> I(512, 512, 0);
178 
179 // We open a window using either X11, GTK or GDI.
180 #if defined VISP_HAVE_X11
181  vpDisplayX display;
182 #elif defined VISP_HAVE_GTK
183  vpDisplayGTK display;
184 #elif defined VISP_HAVE_GDI
185  vpDisplayGDI display;
186 #elif defined VISP_HAVE_OPENCV
187  vpDisplayOpenCV display;
188 #endif
189 
190  if (opt_display) {
191  // Display size is automatically defined by the image (I) size
192  display.init(I, 100, 100, "Camera view...");
193  // Display the image
194  // The image class has a member that specify a pointer toward
195  // the display that has been initialized in the display declaration
196  // therefore is is no longuer necessary to make a reference to the
197  // display variable.
199  vpDisplay::flush(I);
200  }
201 
202  double px = 600, py = 600;
203  double u0 = I.getWidth()/2., v0 = I.getHeight() / 2.;
204 
205  vpCameraParameters cam(px, py, u0, v0);
206 
207  vpServo task;
208  vpSimulatorCamera robot;
209 
210  // sets the initial camera location
211  vpHomogeneousMatrix cMo(0, 0, 1, vpMath::rad(0), vpMath::rad(80), vpMath::rad(30));
212  vpHomogeneousMatrix wMc, wMo;
213  robot.getPosition(wMc);
214  wMo = wMc * cMo; // Compute the position of the object in the world frame
215 
216  vpHomogeneousMatrix cMod(-0.1, -0.1, 0.7, vpMath::rad(40), vpMath::rad(10), vpMath::rad(30));
217 
218  // sets the circle coordinates in the world frame
219  vpCircle circle;
220  circle.setWorldCoordinates(0, 0, 1, 0, 0, 0, 0.1);
221 
222  // sets the desired position of the visual feature
223  vpFeatureEllipse pd;
224  circle.track(cMod);
225  vpFeatureBuilder::create(pd, circle);
226 
227  // project : computes the circle coordinates in the camera frame and its
228  // 2D coordinates sets the current position of the visual feature
230  circle.track(cMo);
231  vpFeatureBuilder::create(p, circle);
232 
233  // define the task
234  // - we want an eye-in-hand control law
235  // - robot is controlled in the camera frame
238  // - we want to see a circle on a circle
239  task.addFeature(p, pd);
240  // - set the gain
241  task.setLambda(1);
242 
243  // Display task information
244  task.print();
245 
246  unsigned int iter = 0;
247  // loop
248  while (iter++ < 200) {
249  std::cout << "---------------------------------------------" << iter << std::endl;
250  vpColVector v;
251 
252  // get the robot position
253  robot.getPosition(wMc);
254  // Compute the position of the object frame in the camera frame
255  cMo = wMc.inverse() * wMo;
256 
257  // new circle position
258  // retrieve x,y and Z of the vpCircle structure
259  circle.track(cMo);
260  vpFeatureBuilder::create(p, circle);
261  circle.print();
262  p.print();
263 
264  if (opt_display) {
266  vpServoDisplay::display(task, cam, I);
267  vpDisplay::flush(I);
268  }
269 
270  // compute the control law
271  v = task.computeControlLaw();
272  std::cout << "task rank: " << task.getTaskRank() << std::endl;
273  // send the camera velocity to the controller
275 
276  std::cout << "|| s - s* || = " << (task.getError()).sumSquare() << std::endl;
277  }
278 
279  // Display task information
280  task.print();
281  task.kill();
282 
283  if (opt_display && opt_click_allowed) {
284  std::cout << "Click in the camera view window to end..." << std::endl;
286  }
287  return EXIT_SUCCESS;
288  } catch (const vpException &e) {
289  std::cout << "Catch a ViSP exception: " << e << std::endl;
290  return EXIT_FAILURE;
291  }
292 }
293 #else
294 int main()
295 {
296  std::cout << "You do not have X11, or GTK, or GDI (Graphical Device Interface) functionalities to display images..." << std::endl;
297  std::cout << "Tip if you are on a unix-like system:" << std::endl;
298  std::cout << "- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
299  std::cout << "Tip if you are on a windows-like system:" << std::endl;
300  std::cout << "- Install GDI, configure again ViSP using cmake and build again this example" << std::endl;
301  return EXIT_SUCCESS;
302 }
303 #endif
unsigned int getTaskRank() const
Definition: vpServo.cpp:1821
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
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
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:128
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:150
error that can be emited by ViSP classes.
Definition: vpException.h:71
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
void track(const vpHomogeneousMatrix &cMo)
vpHomogeneousMatrix inverse() const
vpHomogeneousMatrix getPosition() const
static void flush(const vpImage< unsigned char > &I)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:69
virtual void print() const
void kill()
Definition: vpServo.cpp:192
vpColVector computeControlLaw()
Definition: vpServo.cpp:935
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Generic class defining intrinsic camera parameters.
void setLambda(double c)
Definition: vpServo.h:406
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
Definition: vpDisplayGTK.h:137
void print(unsigned int select=FEATURE_ALL) const
print the name of the feature
void setInteractionMatrixType(const vpServoIteractionMatrixType &interactionMatrixType, const vpServoInversionType &interactionMatrixInversion=PSEUDO_INVERSE)
Definition: vpServo.cpp:574
static double rad(double deg)
Definition: vpMath.h:108
unsigned int getHeight() const
Definition: vpImage.h:186
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
unsigned int getWidth() const
Definition: vpImage.h:244
void setServo(const vpServoType &servo_type)
Definition: vpServo.cpp:223
static void display(const vpServo &s, const vpCameraParameters &cam, const vpImage< unsigned char > &I, vpColor currentColor=vpColor::green, vpColor desiredColor=vpColor::red, unsigned int thickness=1)
void setWorldCoordinates(const vpColVector &oP)
Definition: vpCircle.cpp:61