46 #include <visp3/core/vpConfig.h>
47 #include <visp3/core/vpDebug.h>
49 #if defined(VISP_HAVE_DISPLAY) && \
50 (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
55 #include <visp3/core/vpCameraParameters.h>
56 #include <visp3/core/vpCircle.h>
57 #include <visp3/core/vpHomogeneousMatrix.h>
58 #include <visp3/core/vpImage.h>
59 #include <visp3/core/vpMath.h>
60 #include <visp3/gui/vpDisplayFactory.h>
61 #include <visp3/io/vpParseArgv.h>
62 #include <visp3/robot/vpSimulatorCamera.h>
63 #include <visp3/visual_features/vpFeatureBuilder.h>
64 #include <visp3/visual_features/vpFeatureLine.h>
65 #include <visp3/vs/vpServo.h>
66 #include <visp3/vs/vpServoDisplay.h>
69 #define GETOPTARGS "cdh"
71 #ifdef ENABLE_VISP_NAMESPACE
75 void usage(
const char *name,
const char *badparam);
76 bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
86 void usage(
const char *name,
const char *badparam)
89 Simulation of a 2D visual servoing on a circle:\n\
90 - eye-in-hand control law,\n\
91 - velocity computed in the camera frame,\n\
92 - display the camera view.\n\
102 Disable the mouse click. Useful to automate the \n\
103 execution of this program without human intervention.\n\
106 Turn off the display.\n\
112 fprintf(stderr,
"ERROR: \n");
113 fprintf(stderr,
"\nBad parameter [%s]\n", badparam);
129 bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
137 click_allowed =
false;
143 usage(argv[0],
nullptr);
147 usage(argv[0], optarg_);
152 if ((c == 1) || (c == -1)) {
154 usage(argv[0],
nullptr);
155 std::cerr <<
"ERROR: " << std::endl;
156 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
163 int main(
int argc,
const char **argv)
165 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
166 std::shared_ptr<vpDisplay> display;
171 bool opt_display =
true;
172 bool opt_click_allowed =
true;
175 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
176 return (EXIT_FAILURE);
183 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
197 double px = 600, py = 600;
208 robot.getPosition(wMc);
241 unsigned int iter = 0;
243 while (iter++ < 200) {
244 std::cout <<
"---------------------------------------------" << iter << std::endl;
248 robot.getPosition(wMc);
267 std::cout <<
"task rank: " << task.
getTaskRank() << std::endl;
271 std::cout <<
"|| s - s* || = " << (task.
getError()).sumSquare() << std::endl;
277 if (opt_display && opt_click_allowed) {
282 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
283 if (display !=
nullptr) {
290 std::cout <<
"Catch a ViSP exception: " << e << std::endl;
291 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
292 if (display !=
nullptr) {
299 #elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
302 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
308 std::cout <<
"You do not have X11, or GTK, or GDI (Graphical Device Interface) or OpenCV functionalities to display "
311 std::cout <<
"Tip if you are on a unix-like system:" << std::endl;
312 std::cout <<
"- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
313 std::cout <<
"Tip if you are on a windows-like system:" << std::endl;
314 std::cout <<
"- Install GDI, configure again ViSP using cmake and build again this example" << std::endl;
Generic class defining intrinsic camera parameters.
Class that defines a 3D circle in the object frame and allows forward projection of a 3D circle in th...
void setWorldCoordinates(const vpColVector &oP) VP_OVERRIDE
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 vpImagePoint &t)
Class that defines 2D ellipse visual feature.
void print(unsigned int select=FEATURE_ALL) const VP_OVERRIDE
Print the name of the feature.
virtual void print() const
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 double rad(double deg)
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 setInteractionMatrixType(const vpServoIteractionMatrixType &interactionMatrixType, const vpServoInversionType &interactionMatrixInversion=PSEUDO_INVERSE)
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.
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.