42#include <visp3/core/vpConfig.h>
43#include <visp3/core/vpDebug.h>
45#if defined(VISP_HAVE_DISPLAY) && \
46 (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
51#include <visp3/core/vpCameraParameters.h>
52#include <visp3/core/vpHomogeneousMatrix.h>
53#include <visp3/core/vpImage.h>
54#include <visp3/core/vpLine.h>
55#include <visp3/core/vpMath.h>
56#include <visp3/gui/vpDisplayFactory.h>
57#include <visp3/io/vpParseArgv.h>
58#include <visp3/robot/vpSimulatorCamera.h>
59#include <visp3/visual_features/vpFeatureBuilder.h>
60#include <visp3/visual_features/vpFeatureLine.h>
61#include <visp3/vs/vpServo.h>
62#include <visp3/vs/vpServoDisplay.h>
65#define GETOPTARGS "cdh"
67#ifdef ENABLE_VISP_NAMESPACE
71void usage(
const char *name,
const char *badparam);
72bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
82void usage(
const char *name,
const char *badparam)
85Simulation of 2D a visual servoing on a line:\n\
86- eye-in-hand control law,\n\
87- velocity computed in the camera frame,\n\
88- display the camera view.\n\
98 Disable the mouse click. Useful to automate the \n\
99 execution of this program without human intervention.\n\
102 Turn off the display.\n\
108 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
123bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
131 click_allowed =
false;
137 usage(argv[0],
nullptr);
141 usage(argv[0], optarg_);
146 if ((c == 1) || (c == -1)) {
148 usage(argv[0],
nullptr);
149 std::cerr <<
"ERROR: " << std::endl;
150 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
157int main(
int argc,
const char **argv)
159#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
160 std::shared_ptr<vpDisplay> display;
165 bool opt_display =
true;
166 bool opt_click_allowed =
true;
169 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
178#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
198 double px = 500, py = 500;
199 double u0 = 150, v0 = 160;
211 robot.getPosition(wMc);
255 task.addFeature(l, ld);
265 if (opt_display && opt_click_allowed) {
266 std::cout <<
"\n\nClick in the camera view window to start..." << std::endl;
270 unsigned int iter = 0;
272 while (iter++ < 200) {
273 std::cout <<
"---------------------------------------------" <<
iter << std::endl;
277 robot.getPosition(wMc);
293 v =
task.computeControlLaw();
298 std::cout <<
"|| s - s* || = " << (
task.getError()).sumSquare() << std::endl;
301 if (opt_display && opt_click_allowed) {
309#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
310 if (display !=
nullptr) {
317 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
318#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
319 if (display !=
nullptr) {
327#elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
330 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
336 std::cout <<
"You do not have X11, or GTK, or GDI (Graphical Device Interface) functionalities to display images..."
338 std::cout <<
"Tip if you are on a unix-like system:" << std::endl;
339 std::cout <<
"- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
340 std::cout <<
"Tip if you are on a windows-like system:" << std::endl;
341 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 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 a 2D line visual feature which is composed by two parameters that are and ,...
void print(unsigned int select=FEATURE_ALL) const VP_OVERRIDE
virtual void print() const
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.
Class that defines a 3D line in the object frame and allows forward projection of the line in the cam...
void setWorldCoordinates(const double &oA1, const double &oB1, const double &oC1, const double &oD1, const double &oA2, const double &oB2, const double &oC2, const double &oD2)
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.