48 #include <visp3/core/vpConfig.h>
49 #include <visp3/core/vpHomogeneousMatrix.h>
50 #include <visp3/core/vpMath.h>
51 #include <visp3/core/vpSphere.h>
52 #include <visp3/gui/vpDisplayGDI.h>
53 #include <visp3/gui/vpDisplayGTK.h>
54 #include <visp3/gui/vpDisplayOpenCV.h>
55 #include <visp3/gui/vpDisplayX.h>
56 #include <visp3/io/vpParseArgv.h>
57 #include <visp3/robot/vpSimulatorCamera.h>
58 #include <visp3/visual_features/vpFeatureBuilder.h>
59 #include <visp3/visual_features/vpFeatureEllipse.h>
60 #include <visp3/vs/vpServo.h>
61 #include <visp3/vs/vpServoDisplay.h>
64 #define GETOPTARGS "cdh"
66 #ifdef ENABLE_VISP_NAMESPACE
70 void usage(
const char *name,
const char *badparam);
71 bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
81 void usage(
const char *name,
const char *badparam)
84 Simulation of a 2D visual servoing on a sphere:\n\
85 - eye-in-hand control law,\n\
86 - velocity computed in the camera frame,\n\
87 - display the camera view.\n\
97 Disable the mouse click. Useful to automate the \n\
98 execution of this program without human intervention.\n\
101 Turn off the display.\n\
107 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
122 bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
130 click_allowed =
false;
136 usage(argv[0],
nullptr);
140 usage(argv[0], optarg_);
145 if ((c == 1) || (c == -1)) {
147 usage(argv[0],
nullptr);
148 std::cerr <<
"ERROR: " << std::endl;
149 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
156 int main(
int argc,
const char **argv)
158 #if (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
160 bool opt_display =
true;
161 bool opt_click_allowed =
true;
164 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
165 return (EXIT_FAILURE);
171 #if defined(VISP_HAVE_X11)
173 #elif defined(VISP_HAVE_GTK)
175 #elif defined(VISP_HAVE_GDI)
177 #elif defined(HAVE_OPENCV_HIGHGUI)
182 #if defined(VISP_HAVE_X11) || defined(VISP_HAVE_GTK) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)
184 display.init(I, 100, 100,
"Camera view...");
195 double px = 600, py = 600;
210 robot.getPosition(wMc);
247 unsigned int iter = 0;
249 while (iter++ < 200) {
250 std::cout <<
"---------------------------------------------" << iter << std::endl;
254 robot.getPosition(wMc);
271 std::cout <<
"Task rank: " << task.
getTaskRank() << std::endl;
275 std::cout <<
"|| s - s* || = " << (task.
getError()).sumSquare() << std::endl;
278 if (opt_display && opt_click_allowed) {
289 std::cout <<
"Catch a ViSP exception: " << e << std::endl;
295 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
static const vpColor white
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
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.
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpImagePoint &t)
Class that defines 2D ellipse visual feature.
void track(const vpHomogeneousMatrix &cMo)
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
unsigned int getWidth() const
unsigned int getHeight() const
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
void setVelocity(const vpRobot::vpControlFrameType frame, const vpColVector &vel) VP_OVERRIDE
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 addFeature(vpBasicFeature &s_cur, vpBasicFeature &s_star, unsigned int select=vpBasicFeature::FEATURE_ALL)
unsigned int getTaskRank() const
void print(const vpServo::vpServoPrintType display_level=ALL, std::ostream &os=std::cout)
void setServo(const vpServoType &servo_type)
vpColVector getError() const
vpColVector computeControlLaw()
Class that defines the simplest robot: a free flying camera.
Class that defines a 3D sphere in the object frame and allows forward projection of a 3D sphere in th...
void setWorldCoordinates(const vpColVector &oP) VP_OVERRIDE