44#include <visp3/core/vpConfig.h>
45#include <visp3/core/vpDebug.h>
47#if defined(VISP_HAVE_DISPLAY) && \
48 (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
53#include <visp3/core/vpCameraParameters.h>
54#include <visp3/core/vpCylinder.h>
55#include <visp3/core/vpHomogeneousMatrix.h>
56#include <visp3/core/vpImage.h>
57#include <visp3/core/vpMath.h>
58#include <visp3/gui/vpDisplayFactory.h>
59#include <visp3/io/vpParseArgv.h>
60#include <visp3/robot/vpSimulatorCamera.h>
61#include <visp3/visual_features/vpFeatureBuilder.h>
62#include <visp3/visual_features/vpFeatureLine.h>
63#include <visp3/vs/vpServo.h>
64#include <visp3/vs/vpServoDisplay.h>
67#define GETOPTARGS "cdh"
69#ifdef ENABLE_VISP_NAMESPACE
73void usage(
const char *name,
const char *badparam);
74bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
84void usage(
const char *name,
const char *badparam)
87Simulation of a 2D visual servoing on a cylinder:\n\
88- eye-in-hand control law,\n\
89- velocity computed in the camera frame,\n\
90- display the camera view.\n\
100 Disable the mouse click. Useful to automate the \n\
101 execution of this program without human intervention.\n\
104 Turn off the display.\n\
110 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
124bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
132 click_allowed =
false;
138 usage(argv[0],
nullptr);
142 usage(argv[0], optarg_);
147 if ((c == 1) || (c == -1)) {
149 usage(argv[0],
nullptr);
150 std::cerr <<
"ERROR: " << std::endl;
151 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
158int main(
int argc,
const char **argv)
160#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
161 std::shared_ptr<vpDisplay> display;
166 bool opt_display =
true;
167 bool opt_click_allowed =
true;
170 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
179#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
194#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
195 if (display !=
nullptr) {
217 robot.getPosition(wMc);
229 cylinder.track(cMod);
233 for (
unsigned int i = 0;
i < 2;
i++)
242 for (
unsigned int i = 0;
i < 2;
i++) {
261 task.addFeature(l[0], ld[0]);
262 task.addFeature(l[1], ld[1]);
270 if (opt_display && opt_click_allowed) {
271 std::cout <<
"\n\nClick in the camera view window to start..." << std::endl;
281 unsigned int iter = 0;
284 std::cout <<
"---------------------------------------------" <<
iter++ << std::endl;
288 robot.getPosition(wMc);
296 for (
unsigned int i = 0;
i < 2;
i++) {
308 v =
task.computeControlLaw();
313 std::cout <<
"|| s - s* || = " << (
task.getError()).sumSquare() << std::endl;
316 }
while ((
task.getError()).sumSquare() > 1e-9);
318 if (opt_display && opt_click_allowed) {
326#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
327 if (display !=
nullptr) {
334 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
335#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
336 if (display !=
nullptr) {
344#elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
347 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
353 std::cout <<
"You do not have X11, or GTK, or GDI (Graphical Device Interface) or OpenCV functionalities to display "
356 std::cout <<
"Tip if you are on a unix-like system:" << std::endl;
357 std::cout <<
"- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
358 std::cout <<
"Tip if you are on a windows-like system:" << std::endl;
359 std::cout <<
"- Install GDI, configure again ViSP using cmake and build again this example" << std::endl;
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
static const vpColor black
Class that defines a 3D cylinder in the object frame and allows forward projection of a 3D cylinder i...
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 a 2D line visual feature which is composed by two parameters that are and ,...
void print(unsigned int select=FEATURE_ALL) const VP_OVERRIDE
Implementation of an homogeneous matrix and operations on such kind of matrices.
vpHomogeneousMatrix inverse() const
Definition of the vpImage class member functions.
static double rad(double deg)
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.
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.