Visual Servoing Platform  version 3.1.0
wireframeSimulator.cpp
1 /****************************************************************************
2  *
3  * This file is part of the ViSP software.
4  * Copyright (C) 2005 - 2017 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  * Demonstration of the wireframe simulator
33  *
34  * Authors:
35  * Nicolas Melchior
36  *
37  *****************************************************************************/
38 
45 #include <stdlib.h>
46 
47 #include <visp3/core/vpCameraParameters.h>
48 #include <visp3/core/vpHomogeneousMatrix.h>
49 #include <visp3/core/vpImage.h>
50 #include <visp3/core/vpIoTools.h>
51 #include <visp3/core/vpMath.h>
52 #include <visp3/gui/vpDisplayD3D.h>
53 #include <visp3/gui/vpDisplayGDI.h>
54 #include <visp3/gui/vpDisplayGTK.h>
55 #include <visp3/gui/vpDisplayOpenCV.h>
56 #include <visp3/gui/vpDisplayX.h>
57 #include <visp3/io/vpImageIo.h>
58 #include <visp3/io/vpParseArgv.h>
59 #include <visp3/robot/vpWireFrameSimulator.h>
60 
61 #define GETOPTARGS "cdh"
62 
63 #ifdef VISP_HAVE_DISPLAY
64 
65 void usage(const char *name, const char *badparam);
66 bool getOptions(int argc, const char **argv, bool &display, bool &click);
67 
76 void usage(const char *name, const char *badparam)
77 {
78  fprintf(stdout, "\n\
79 Demonstration of the wireframe simulator.\n\
80 \n\
81 The goal of this example is to present the basic functionalities of the wire frame simulator.\n\
82 \n\
83 SYNOPSIS\n\
84  %s [-c] [-d] [-h]\n", name);
85 
86  fprintf(stdout, "\n\
87 OPTIONS: Default\n\
88  -c \n\
89  Disable mouse click.\n\
90 \n\
91  -d \n\
92  Turn off the display.\n\
93 \n\
94  -h\n\
95  Print the help.\n");
96 
97  if (badparam)
98  fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
99 }
100 
113 bool getOptions(int argc, const char **argv, bool &display, bool &click)
114 {
115  const char *optarg_;
116  int c;
117  while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg_)) > 1) {
118 
119  switch (c) {
120  case 'c':
121  click = false;
122  break;
123  case 'd':
124  display = false;
125  break;
126  case 'h':
127  usage(argv[0], NULL);
128  return false;
129  break;
130 
131  default:
132  usage(argv[0], optarg_);
133  return false;
134  break;
135  }
136  }
137 
138  if ((c == 1) || (c == -1)) {
139  // standalone param or error
140  usage(argv[0], NULL);
141  std::cerr << "ERROR: " << std::endl;
142  std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
143  return false;
144  }
145 
146  return true;
147 }
148 
149 int main(int argc, const char **argv)
150 {
151  try {
152  bool opt_display = true;
153  bool opt_click = true;
154 
155  // Read the command line options
156  if (getOptions(argc, argv, opt_display, opt_click) == false) {
157  exit(-1);
158  }
159 
160  /*
161  Three vpImage are created : one for the main camera and the others
162  for two external cameras
163  */
164  vpImage<vpRGBa> Iint(480, 640, 255);
165  vpImage<vpRGBa> Iext1(480, 640, 255);
166  vpImage<vpRGBa> Iext2(480, 640, 255);
167 
168 /*
169 Create a display for each different cameras.
170 */
171 #if defined VISP_HAVE_X11
172  vpDisplayX display[3];
173 #elif defined VISP_HAVE_OPENCV
174  vpDisplayOpenCV display[3];
175 #elif defined VISP_HAVE_GDI
176  vpDisplayGDI display[3];
177 #elif defined VISP_HAVE_D3D9
178  vpDisplayD3D display[3];
179 #elif defined VISP_HAVE_GTK
180  vpDisplayGTK display[3];
181 #endif
182 
183  if (opt_display) {
184  // Display size is automatically defined by the image (I) size
185  display[0].init(Iint, 100, 100, "The internal view");
186  display[1].init(Iext1, 100, 100, "The first external view");
187  display[2].init(Iext2, 100, 100, "The second external view");
188  vpDisplay::setWindowPosition(Iint, 0, 0);
189  vpDisplay::setWindowPosition(Iext1, 700, 0);
190  vpDisplay::setWindowPosition(Iext2, 0, 550);
191  vpDisplay::display(Iint);
192  vpDisplay::flush(Iint);
193  vpDisplay::display(Iext1);
194  vpDisplay::flush(Iext1);
195  vpDisplay::display(Iext2);
196  vpDisplay::flush(Iext2);
197  }
198 
199  // The homogeneous matrix which gives the current position of the main
200  // camera relative to the object
201  vpHomogeneousMatrix cMo(0, 0.05, 1.3, vpMath::rad(15), vpMath::rad(25), 0);
202 
203  // The homogeneous matrix which gives the desired position of the main
204  // camera relative to the object
206 
207  // Declaration of the simulator
209  /*
210  Set the scene. It enables to choose the shape of the object and the shape
211  of the desired object which is displayed in the main camera view. It
212  exists several objects in ViSP. See the html documentation of the
213  simulator class to have the complete list.
214 
215  Note : if you don't want to have a desired object displayed in the main
216  camera view you can use the initObject Method.
217 
218  Here the object is a plate with 4 points and it is the same object which
219  is used to display the object at the desired position.
220  */
222 
223  /*
224  The object at the current position will be displayed in blue
225  The object at the desired position will be displayed in red
226  The camera will be display in green
227  */
231  /*
232  Set the current and the desired position of the camera relative to the
233  object.
234  */
235  sim.setCameraPositionRelObj(cMo);
236  sim.setDesiredCameraPosition(cdMo);
237  /*
238  Set the main external camera's position relative to the world reference
239  frame. More information about the different frames are given in the html
240  documentation.
241  */
242  vpHomogeneousMatrix camMw(vpHomogeneousMatrix(0.0, 0, 4.5, vpMath::rad(0), vpMath::rad(-30), 0));
243  sim.setExternalCameraPosition(camMw);
244 
245  /*
246  Set the parameters of the cameras (internal and external)
247  */
248  vpCameraParameters camera(1000, 1000, 320, 240);
249  sim.setInternalCameraParameters(camera);
250  sim.setExternalCameraParameters(camera);
251 
252  vpHomogeneousMatrix camoMw(vpHomogeneousMatrix(-0.3, 0.2, 2.5, vpMath::rad(0), vpMath::rad(10), 0));
253 
254  if (opt_display) {
255  // Get the view of the internal camera
256  sim.getInternalImage(Iint);
257  // Get the view of the main external camera
258  sim.getExternalImage(Iext1);
259  // Get the view of an external camera that you can positionned thanks
260  // to a vpHomogeneousMatrix which describes the position of the camera
261  // relative to the world reference frame.
262  sim.getExternalImage(Iext2, camoMw);
263  // Display the views.
264 
265  vpDisplay::flush(Iint);
266  vpDisplay::flush(Iext1);
267  vpDisplay::flush(Iext2);
268  }
269 
270  std::cout << std::endl;
271  std::cout << "Here are presented the effect of the basic functions of "
272  "the simulator"
273  << std::endl;
274  std::cout << std::endl;
275 
276  if (opt_display) {
277  if (opt_click) {
278  std::cout << "Click on the internal view window to continue. the "
279  "object will move. The external cameras are fixed. The "
280  "main camera moves too because the homogeneous matrix "
281  "cMo didn't change."
282  << std::endl;
283  vpDisplay::getClick(Iint);
284  }
285  vpDisplay::display(Iint);
286  vpDisplay::display(Iext1);
287  vpDisplay::display(Iext2);
288  }
289  /*
290  To move the object you have to define a vpHomogeneousMatrix which gives
291  the position of the object relative to the world refrenece frame.
292  */
293  vpHomogeneousMatrix mov(0.05, 0.05, 0.2, vpMath::rad(10), 0, 0);
294  sim.set_fMo(mov);
295 
296  if (opt_display) {
297  // Get the view of the internal camera
298  sim.getInternalImage(Iint);
299  // Get the view of the main external camera
300  sim.getExternalImage(Iext1);
301  // Get the view of an external camera that you can positionned thanks
302  // to a vpHomogeneousMatrix which describes the position of the camera
303  // relative to the world reference frame.
304  sim.getExternalImage(Iext2, camoMw);
305  // Display the views.
306 
307  vpDisplay::flush(Iint);
308  vpDisplay::flush(Iext1);
309  vpDisplay::flush(Iext2);
310  }
311 
312  std::cout << std::endl;
313  if (opt_display) {
314  if (opt_click) {
315  std::cout << "Click on the internal view window to continue" << std::endl;
316  vpDisplay::getClick(Iint);
317  }
318  }
319  std::cout << std::endl;
320  std::cout << "Now you can move the main external camera. Click inside "
321  "the corresponding window with one of the three buttons of "
322  "your mouse and move the pointer."
323  << std::endl;
324  std::cout << std::endl;
325  std::cout << "Click on the internal view window when you are finished" << std::endl;
326 
327  /*
328  To move the main external camera you need a loop containing the
329  getExternalImage method. This functionnality is only available for the
330  main external camera.
331  */
332  if (opt_display && opt_click) {
333  while (!vpDisplay::getClick(Iint, false)) {
334  vpDisplay::display(Iext1);
335  sim.getExternalImage(Iext1);
336  vpDisplay::flush(Iext1);
337  }
338  }
339 
340  std::cout << std::endl;
341  std::cout << "You have seen the main capabilities of the simulator. "
342  "Other specific functionalities are available. Please "
343  "refers to the html documentation to access the list of all "
344  "functions"
345  << std::endl;
346  return 0;
347  } catch (vpException &e) {
348  std::cout << "Catch an exception: " << e << std::endl;
349  return 1;
350  }
351 }
352 #else
353 int main()
354 {
355  vpERROR_TRACE("You do not have X11, OpenCV, GDI, D3D9 or GTK display "
356  "functionalities...");
357 }
358 
359 #endif
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
Implementation of an homogeneous matrix and operations on such kind of matrices.
void setCameraColor(const vpColor &col)
void setDesiredViewColor(const vpColor &col)
void set_fMo(const vpHomogeneousMatrix &fMo_)
#define vpERROR_TRACE
Definition: vpDebug.h:393
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:129
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:151
error that can be emited by ViSP classes.
Definition: vpException.h:71
void setCurrentViewColor(const vpColor &col)
void setExternalCameraPosition(const vpHomogeneousMatrix &cam_Mf)
void setDesiredCameraPosition(const vpHomogeneousMatrix &cdMo_)
static const vpColor green
Definition: vpColor.h:183
static void flush(const vpImage< unsigned char > &I)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Definition: vpParseArgv.cpp:69
static const vpColor red
Definition: vpColor.h:180
Display for windows using Direct3D 3rd party. Thus to enable this class Direct3D should be installed...
Definition: vpDisplayD3D.h:107
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 initScene(const vpSceneObject &obj, const vpSceneDesiredObject &desiredObject)
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
Definition: vpDisplayGTK.h:138
void getExternalImage(vpImage< unsigned char > &I)
Implementation of a wire frame simulator. Compared to the vpSimulator class, it does not require thir...
static double rad(double deg)
Definition: vpMath.h:102
void setExternalCameraParameters(const vpCameraParameters &cam)
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
void setCameraPositionRelObj(const vpHomogeneousMatrix &cMo_)
void getInternalImage(vpImage< unsigned char > &I)
static void setWindowPosition(const vpImage< unsigned char > &I, int winx, int winy)
void setInternalCameraParameters(const vpCameraParameters &cam)
static const vpColor blue
Definition: vpColor.h:186