Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
servoSimu3D_cdMc_CamVelocityWithoutVpServo.cpp
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2025 by Inria. All rights reserved.
4 *
5 * This software is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * See the file LICENSE.txt at the root directory of this source
10 * distribution for additional information about the GNU GPL.
11 *
12 * For using ViSP with software that can not be combined with the GNU
13 * GPL, please contact Inria about acquiring a ViSP Professional
14 * Edition License.
15 *
16 * See https://visp.inria.fr for more information.
17 *
18 * This software was developed at:
19 * Inria Rennes - Bretagne Atlantique
20 * Campus Universitaire de Beaulieu
21 * 35042 Rennes Cedex
22 * France
23 *
24 * If you have questions regarding the use of this file, please contact
25 * Inria at visp@inria.fr
26 *
27 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 *
30 * Description:
31 * Simulation of a 3D visual servoing.
32 */
67
68#include <stdio.h>
69#include <stdlib.h>
70#include <string>
71
72#include <visp3/core/vpConfig.h>
73#include <visp3/core/vpHomogeneousMatrix.h>
74#include <visp3/core/vpIoTools.h>
75#include <visp3/core/vpMath.h>
76#include <visp3/core/vpThetaUVector.h>
77#include <visp3/core/vpTranslationVector.h>
78#include <visp3/io/vpParseArgv.h>
79#include <visp3/robot/vpSimulatorCamera.h>
80
81// List of allowed command line options
82#define GETOPTARGS "h"
83
84#ifdef ENABLE_VISP_NAMESPACE
85using namespace VISP_NAMESPACE_NAME;
86#endif
87
88void usage(const char *name, const char *badparam);
89bool getOptions(int argc, const char **argv);
90
99void usage(const char *name, const char *badparam)
100{
101 fprintf(stdout, "\n\
102Simulation of a 3D visual servoing:\n\
103- eye-in-hand control law,\n\
104- velocity computed in the camera frame,\n\
105- without display.\n\
106\n\
107SYNOPSIS\n\
108 %s [-h]\n",
109 name);
110
111 fprintf(stdout, "\n\
112OPTIONS: Default\n\
113\n\
114 -h\n\
115 Print the help.\n");
116
117 if (badparam)
118 fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
119}
120
130bool getOptions(int argc, const char **argv)
131{
132 const char *optarg_;
133 int c;
134 while ((c = vpParseArgv::parse(argc, argv, GETOPTARGS, &optarg_)) > 1) {
135
136 switch (c) {
137 case 'h':
138 usage(argv[0], nullptr);
139 return false;
140
141 default:
142 usage(argv[0], optarg_);
143 return false;
144 }
145 }
146
147 if ((c == 1) || (c == -1)) {
148 // standalone param or error
149 usage(argv[0], nullptr);
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
158int main(int argc, const char **argv)
159{
160 try {
161 // Read the command line options
162 if (getOptions(argc, argv) == false) {
163 return EXIT_FAILURE;
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#if defined(_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 << "ERROR:" << std::endl;
189 std::cerr << " Cannot create " << logdirname << std::endl;
190 return EXIT_FAILURE;
191 }
192 }
193 std::string logfilename;
194 logfilename = logdirname + "/log.dat";
195
196 // Open the log file name
197 std::ofstream flog(logfilename.c_str());
198
199 vpSimulatorCamera robot;
200
201 std::cout << std::endl;
202 std::cout << "-------------------------------------------------------" << std::endl;
203 std::cout << " Test program without vpServo and vpFeature classes " << std::endl;
204 std::cout << " Eye-in-hand task control, velocity computed in the camera frame" << std::endl;
205 std::cout << " Simulation " << std::endl;
206 std::cout << " task : 3D visual servoing " << std::endl;
207 std::cout << "-------------------------------------------------------" << std::endl;
208 std::cout << std::endl;
209
210 // Sets the initial camera location
211 vpPoseVector c_r_o( // Translation tx,ty,tz
212 0.1, 0.2, 2,
213 // ThetaU rotation
214 vpMath::rad(20), vpMath::rad(10), vpMath::rad(50));
215
216 // From the camera pose build the corresponding homogeneous matrix
218
219 // Set the robot initial position
220 vpHomogeneousMatrix wMc, wMo;
221 robot.getPosition(wMc);
222 wMo = wMc * cMo; // Compute the position of the object in the world frame
223
224 // Sets the desired camera location
225 vpPoseVector cd_r_o( // Translation tx,ty,tz
226 0, 0, 1,
227 // ThetaU rotation
229 // From the camera desired pose build the corresponding homogeneous matrix
230 vpHomogeneousMatrix cdMo(cd_r_o);
231
232 vpHomogeneousMatrix cdMc; // Transformation between desired and current camera frame
233 vpRotationMatrix cdRc; // Rotation between desired and current camera frame
234 vpRotationMatrix cRcd; // Rotation between current and desired camera frame
235
236 // Set the constant gain of the servo
237 double lambda = 1;
238
239 unsigned int iter = 0;
240 // Start the visual servoing loop. We stop the servo after 200 iterations
241 while (iter++ < 200) {
242 std::cout << "-----------------------------------" << iter << std::endl;
243
244 // get the robot position
245 robot.getPosition(wMc);
246 // Compute the position of the object frame in the camera frame
247 cMo = wMc.inverse() * wMo;
248
249 // new displacement to achieve
250 cdMc = cdMo * cMo.inverse();
251
252 // Extract the translation vector c*tc which is the current
253 // translational visual feature.
255 cdMc.extract(cdtc);
256 // Extract the rotation matrix c*Rc
257 cdMc.extract(cdRc);
258 // Compute the inverse rotation cRc* (in fact the transpose of c*Rc)
259 cRcd = cdRc.inverse();
260 // Compute the current theta U visual feature
261 vpThetaUVector tu_cdRc(cdMc);
262 // Compute the camera translational velocity
263 vpColVector v(3);
264 v = -lambda * cRcd * cdtc;
265 // Compute the camera rotational velocity
266 vpColVector w(3);
267 w = -lambda * tu_cdRc;
268
269 // Update the complete camera velocity vector
270 vpColVector velocity(6);
271 for (unsigned int i = 0; i < 3; i++) {
272 velocity[i] = v[i]; // Translational velocity
273 velocity[i + 3] = w[i]; // Rotational velocity
274 }
275
276 // Send the camera velocity to the controller
277 robot.setVelocity(vpRobot::CAMERA_FRAME, velocity);
278
279 // Retrieve the error (s-s*)
280 std::cout << "|| s - s* || = " << cdtc.t() << " " << tu_cdRc.t() << std::endl;
281
282 // Save log
283 flog << velocity.t() << " " << cdtc.t() << " " << tu_cdRc.t() << std::endl;
284 }
285 // Close the log file
286 flog.close();
287 return EXIT_SUCCESS;
288 }
289 catch (const vpException &e) {
290 std::cout << "Catch a ViSP exception: " << e << std::endl;
291 return EXIT_FAILURE;
292 }
293}
Implementation of column vector and the associated operations.
error that can be emitted by ViSP classes.
Definition vpException.h:60
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
void extract(vpRotationMatrix &R) const
static bool checkDirectory(const std::string &dirname)
static std::string getUserName()
static void makeDirectory(const std::string &dirname)
static double rad(double deg)
Definition vpMath.h:129
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Implementation of a pose vector and operations on poses.
@ CAMERA_FRAME
Definition vpRobot.h:81
Implementation of a rotation matrix and operations on such kind of matrices.
vpRotationMatrix inverse() const
Class that defines the simplest robot: a free flying camera.
Implementation of a rotation vector as axis-angle minimal representation.
Class that consider the case of a translation vector.