47#include <visp3/core/vpConfig.h>
48#include <visp3/core/vpHomogeneousMatrix.h>
49#include <visp3/core/vpMath.h>
50#include <visp3/core/vpPoint.h>
51#include <visp3/io/vpParseArgv.h>
52#include <visp3/robot/vpSimulatorCamera.h>
53#include <visp3/visual_features/vpFeaturePoint3D.h>
54#include <visp3/vs/vpServo.h>
59#ifdef ENABLE_VISP_NAMESPACE
63void usage(
const char *name,
const char *badparam);
64bool getOptions(
int argc,
const char **argv);
74void usage(
const char *name,
const char *badparam)
77Simulation of a 3D visual servoing:\n\
79- eye-in-hand control law,\n\
80- velocity computed in the camera frame,\n\
94 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
106bool getOptions(
int argc,
const char **argv)
114 usage(argv[0],
nullptr);
118 usage(argv[0], optarg_);
123 if ((c == 1) || (c == -1)) {
125 usage(argv[0],
nullptr);
126 std::cerr <<
"ERROR: " << std::endl;
127 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
134int main(
int argc,
const char **argv)
136#if (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
139 if (getOptions(argc, argv) ==
false) {
146 std::cout << std::endl;
147 std::cout <<
"-------------------------------------------------------" << std::endl;
148 std::cout <<
" Test program for vpServo " << std::endl;
149 std::cout <<
" Eye-in-hand task control, velocity computed in the camera frame" << std::endl;
150 std::cout <<
" Simulation " << std::endl;
151 std::cout <<
" task : servo a 3D point " << std::endl;
152 std::cout <<
"-------------------------------------------------------" << std::endl;
153 std::cout << std::endl;
162 robot.getPosition(wMc);
171 std::cout <<
"Point coordinates in the camera frame: " << point.cP.t();
186 std::cout << std::endl;
187 task.addFeature(p, pd);
195 unsigned int iter = 0;
197 while (iter++ < 200) {
198 std::cout <<
"---------------------------------------------" <<
iter << std::endl;
202 robot.getPosition(wMc);
213 v =
task.computeControlLaw();
217 std::cout <<
"|| s - s* || = " << (
task.getError()).sumSquare() << std::endl;
225 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
231 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
Implementation of column vector and the associated operations.
error that can be emitted by ViSP classes.
Class that defines the 3D point visual feature.
void set_XYZ(double X, double Y, double Z)
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
Class that defines the simplest robot: a free flying camera.