Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
servoSimuLine2DCamVelocityDisplay.cpp
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2023 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 https://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 line.
33  *
34 *****************************************************************************/
35 
44 #include <visp3/core/vpConfig.h>
45 #include <visp3/core/vpDebug.h>
46 
47 #if (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GTK) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) && \
48  (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
49 
50 #include <stdio.h>
51 #include <stdlib.h>
52 
53 #include <visp3/core/vpCameraParameters.h>
54 #include <visp3/core/vpHomogeneousMatrix.h>
55 #include <visp3/core/vpImage.h>
56 #include <visp3/core/vpLine.h>
57 #include <visp3/core/vpMath.h>
58 #include <visp3/gui/vpDisplayGDI.h>
59 #include <visp3/gui/vpDisplayGTK.h>
60 #include <visp3/gui/vpDisplayOpenCV.h>
61 #include <visp3/gui/vpDisplayX.h>
62 #include <visp3/io/vpParseArgv.h>
63 #include <visp3/robot/vpSimulatorCamera.h>
64 #include <visp3/visual_features/vpFeatureBuilder.h>
65 #include <visp3/visual_features/vpFeatureLine.h>
66 #include <visp3/vs/vpServo.h>
67 #include <visp3/vs/vpServoDisplay.h>
68 
69 // List of allowed command line options
70 #define GETOPTARGS "cdh"
71 
72 #ifdef ENABLE_VISP_NAMESPACE
73 using namespace VISP_NAMESPACE_NAME;
74 #endif
75 
76 void usage(const char *name, const char *badparam);
77 bool getOptions(int argc, const char **argv, bool &click_allowed, bool &display);
78 
87 void usage(const char *name, const char *badparam)
88 {
89  fprintf(stdout, "\n\
90 Simulation of 2D a visual servoing on a line:\n\
91 - eye-in-hand control law,\n\
92 - velocity computed in the camera frame,\n\
93 - display the camera view.\n\
94  \n\
95 SYNOPSIS\n\
96  %s [-c] [-d] [-h]\n",
97  name);
98 
99  fprintf(stdout, "\n\
100 OPTIONS: Default\n\
101  \n\
102  -c\n\
103  Disable the mouse click. Useful to automate the \n\
104  execution of this program without human 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(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
114 }
115 
128 bool getOptions(int argc, const char **argv, bool &click_allowed, bool &display)
129 {
130  const char *optarg_;
131  int c;
132  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg_)) > 1) {
133 
134  switch (c) {
135  case 'c':
136  click_allowed = false;
137  break;
138  case 'd':
139  display = false;
140  break;
141  case 'h':
142  usage(argv[0], nullptr);
143  return false;
144 
145  default:
146  usage(argv[0], optarg_);
147  return false;
148  }
149  }
150 
151  if ((c == 1) || (c == -1)) {
152  // standalone param or error
153  usage(argv[0], nullptr);
154  std::cerr << "ERROR: " << std::endl;
155  std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
156  return false;
157  }
158 
159  return true;
160 }
161 
162 int main(int argc, const char **argv)
163 {
164  try {
165  bool opt_display = true;
166  bool opt_click_allowed = true;
167 
168  // Read the command line options
169  if (getOptions(argc, argv, opt_click_allowed, opt_display) == false) {
170  return EXIT_FAILURE;
171  }
172 
173  vpImage<unsigned char> I(512, 512, 0);
174 
175 // We open a window using either X11, GTK or GDI.
176 #if defined(VISP_HAVE_X11)
177  vpDisplayX display;
178 #elif defined(VISP_HAVE_GTK)
179  vpDisplayGTK display;
180 #elif defined(VISP_HAVE_GDI)
181  vpDisplayGDI display;
182 #elif defined(HAVE_OPENCV_HIGHGUI)
183  vpDisplayOpenCV display;
184 #endif
185 
186  if (opt_display) {
187  try {
188  // Display size is automatically defined by the image (I) size
189  display.init(I, 100, 100, "Camera view...");
190  // Display the image
191  // The image class has a member that specify a pointer toward
192  // the display that has been initialized in the display declaration
193  // therefore is is no longer necessary to make a reference to the
194  // display variable.
196  vpDisplay::flush(I);
197  }
198  catch (...) {
199  vpERROR_TRACE("Error while displaying the image");
200  return EXIT_FAILURE;
201  }
202  }
203 
204  double px = 500, py = 500;
205  double u0 = 150, v0 = 160;
206 
207  vpCameraParameters cam(px, py, u0, v0);
208 
209  vpServo task;
210  vpSimulatorCamera robot;
211 
212  // sets the initial camera location
213  vpHomogeneousMatrix cMo(-0.2, 0.1, 1, vpMath::rad(5), vpMath::rad(5), vpMath::rad(90));
214 
215  // Compute the position of the object in the world frame
216  vpHomogeneousMatrix wMc, wMo;
217  robot.getPosition(wMc);
218  wMo = wMc * cMo;
219 
220  // sets the final camera location (for simulation purpose)
221  vpHomogeneousMatrix cMod(0, 0, 1, vpMath::rad(0), vpMath::rad(0), vpMath::rad(0));
222 
223  // sets the line coordinates (2 planes) in the world frame
224  vpColVector plane1(4);
225  vpColVector plane2(4);
226  plane1[0] = 0; // z = 0
227  plane1[1] = 0;
228  plane1[2] = 1;
229  plane1[3] = 0;
230  plane2[0] = 0; // y =0
231  plane2[1] = 1;
232  plane2[2] = 0;
233  plane2[3] = 0;
234 
235  vpLine line;
236  line.setWorldCoordinates(plane1, plane2);
237 
238  // sets the desired position of the visual feature
239  line.track(cMod);
240  line.print();
241 
242  vpFeatureLine ld;
243  vpFeatureBuilder::create(ld, line);
244 
245  // computes the line coordinates in the camera frame and its 2D
246  // coordinates sets the current position of the visual feature
247  line.track(cMo);
248  line.print();
249 
250  vpFeatureLine l;
251  vpFeatureBuilder::create(l, line);
252  l.print();
253 
254  // define the task
255  // - we want an eye-in-hand control law
256  // - robot is controlled in the camera frame
258 
259  // we want to see a line on a line
260 
261  task.addFeature(l, ld);
263  vpServoDisplay::display(task, cam, I);
264  vpDisplay::flush(I);
265 
266  // set the gain
267  task.setLambda(1);
268  // Display task information " ) ;
269  task.print();
270 
271  if (opt_display && opt_click_allowed) {
272  std::cout << "\n\nClick in the camera view window to start..." << std::endl;
274  }
275 
276  unsigned int iter = 0;
277  // loop
278  while (iter++ < 200) {
279  std::cout << "---------------------------------------------" << iter << std::endl;
280  vpColVector v;
281 
282  // get the robot position
283  robot.getPosition(wMc);
284  // Compute the position of the object frame in the camera frame
285  cMo = wMc.inverse() * wMo;
286 
287  // new line position
288  line.track(cMo);
289  // retrieve x,y and Z of the vpLine structure
290  vpFeatureBuilder::create(l, line);
291 
292  if (opt_display) {
294  vpServoDisplay::display(task, cam, I);
295  vpDisplay::flush(I);
296  }
297 
298  // compute the control law
299  v = task.computeControlLaw();
300 
301  // send the camera velocity to the controller
303 
304  std::cout << "|| s - s* || = " << (task.getError()).sumSquare() << std::endl;
305  }
306 
307  if (opt_display && opt_click_allowed) {
308  vpDisplay::displayText(I, 20, 20, "Click to quit...", vpColor::white);
309  vpDisplay::flush(I);
311  }
312 
313  // Display task information
314  task.print();
315  return EXIT_SUCCESS;
316  }
317  catch (const vpException &e) {
318  std::cout << "Catch a ViSP exception: " << e << std::endl;
319  return EXIT_FAILURE;
320  }
321 }
322 
323 #elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
324 int main()
325 {
326  std::cout << "Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
327  return EXIT_SUCCESS;
328 }
329 #else
330 int main()
331 {
332  std::cout << "You do not have X11, or GTK, or GDI (Graphical Device Interface) functionalities to display images..."
333  << std::endl;
334  std::cout << "Tip if you are on a unix-like system:" << std::endl;
335  std::cout << "- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
336  std::cout << "Tip if you are on a windows-like system:" << std::endl;
337  std::cout << "- Install GDI, configure again ViSP using cmake and build again this example" << std::endl;
338  return EXIT_SUCCESS;
339 }
340 #endif
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
Definition: vpColVector.h:191
static const vpColor white
Definition: vpColor.h:212
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:130
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
Definition: vpDisplayGTK.h:133
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
Definition: vpException.h:60
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpImagePoint &t)
Class that defines a 2D line visual feature which is composed by two parameters that are and ,...
void print(unsigned int select=FEATURE_ALL) const VP_OVERRIDE
virtual void print() const
void track(const vpHomogeneousMatrix &cMo)
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
Class that defines a 3D line in the object frame and allows forward projection of the line in the cam...
Definition: vpLine.h:103
void setWorldCoordinates(const double &oA1, const double &oB1, const double &oC1, const double &oD1, const double &oA2, const double &oB2, const double &oC2, const double &oD2)
Definition: vpLine.cpp:83
static double rad(double deg)
Definition: vpMath.h:129
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:70
void setVelocity(const vpRobot::vpControlFrameType frame, const vpColVector &vel) VP_OVERRIDE
@ CAMERA_FRAME
Definition: vpRobot.h:84
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)
@ EYEINHAND_CAMERA
Definition: vpServo.h:161
void addFeature(vpBasicFeature &s_cur, vpBasicFeature &s_star, unsigned int select=vpBasicFeature::FEATURE_ALL)
Definition: vpServo.cpp:331
void print(const vpServo::vpServoPrintType display_level=ALL, std::ostream &os=std::cout)
Definition: vpServo.cpp:171
void setLambda(double c)
Definition: vpServo.h:986
void setServo(const vpServoType &servo_type)
Definition: vpServo.cpp:134
vpColVector getError() const
Definition: vpServo.h:510
vpColVector computeControlLaw()
Definition: vpServo.cpp:705
Class that defines the simplest robot: a free flying camera.