46#include <visp3/core/vpConfig.h>
47#include <visp3/core/vpHomogeneousMatrix.h>
48#include <visp3/core/vpMath.h>
49#include <visp3/core/vpSphere.h>
50#include <visp3/gui/vpDisplayFactory.h>
51#include <visp3/io/vpParseArgv.h>
52#include <visp3/robot/vpSimulatorCamera.h>
53#include <visp3/visual_features/vpFeatureBuilder.h>
54#include <visp3/visual_features/vpFeatureEllipse.h>
55#include <visp3/vs/vpServo.h>
56#include <visp3/vs/vpServoDisplay.h>
59#define GETOPTARGS "cdh"
61#ifdef ENABLE_VISP_NAMESPACE
65void usage(
const char *name,
const char *badparam);
66bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
76void usage(
const char *name,
const char *badparam)
79Simulation of a 2D visual servoing on a sphere:\n\
80- eye-in-hand control law,\n\
81- velocity computed in the camera frame,\n\
82- display the camera view.\n\
92 Disable the mouse click. Useful to automate the \n\
93 execution of this program without human intervention.\n\
96 Turn off the display.\n\
102 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
117bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
125 click_allowed =
false;
131 usage(argv[0],
nullptr);
135 usage(argv[0], optarg_);
140 if ((c == 1) || (c == -1)) {
142 usage(argv[0],
nullptr);
143 std::cerr <<
"ERROR: " << std::endl;
144 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
151int main(
int argc,
const char **argv)
153#if (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
154#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
155 std::shared_ptr<vpDisplay> display;
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_DISPLAY)
173#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
188 double px = 600, py = 600;
189 double u0 = I.getWidth() / 2., v0 = I.getHeight() / 2.;
203 robot.getPosition(wMc);
232 task.addFeature(p, pd);
240 unsigned int iter = 0;
242 while (iter++ < 200) {
243 std::cout <<
"---------------------------------------------" <<
iter << std::endl;
247 robot.getPosition(wMc);
262 v =
task.computeControlLaw();
264 std::cout <<
"Task rank: " <<
task.getTaskRank() << std::endl;
268 std::cout <<
"|| s - s* || = " << (
task.getError()).sumSquare() << std::endl;
271 if (opt_display && opt_click_allowed) {
279#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
280 if (display !=
nullptr) {
287 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
288#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
289 if (display !=
nullptr) {
298 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
Class that defines generic functionalities for display.
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 vpDot &d)
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
Definition of the vpImage class member functions.
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
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)
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
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.