46 #include <visp3/core/vpConfig.h>
47 #include <visp3/core/vpDebug.h>
49 #if (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GTK) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) && \
50 (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
55 #include <visp3/core/vpCameraParameters.h>
56 #include <visp3/core/vpCylinder.h>
57 #include <visp3/core/vpHomogeneousMatrix.h>
58 #include <visp3/core/vpImage.h>
59 #include <visp3/core/vpMath.h>
60 #include <visp3/gui/vpDisplayGDI.h>
61 #include <visp3/gui/vpDisplayGTK.h>
62 #include <visp3/gui/vpDisplayOpenCV.h>
63 #include <visp3/gui/vpDisplayX.h>
64 #include <visp3/io/vpParseArgv.h>
65 #include <visp3/robot/vpSimulatorCamera.h>
66 #include <visp3/visual_features/vpFeatureBuilder.h>
67 #include <visp3/visual_features/vpFeatureLine.h>
68 #include <visp3/vs/vpServo.h>
69 #include <visp3/vs/vpServoDisplay.h>
72 #define GETOPTARGS "cdh"
74 #ifdef ENABLE_VISP_NAMESPACE
78 void usage(
const char *name,
const char *badparam);
79 bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
89 void usage(
const char *name,
const char *badparam)
92 Simulation of a 2D visual servoing on a cylinder:\n\
93 - eye-in-hand control law,\n\
94 - velocity computed in the camera frame,\n\
95 - display the camera view.\n\
105 Disable the mouse click. Useful to automate the \n\
106 execution of this program without human intervention.\n\
109 Turn off the display.\n\
115 fprintf(stdout,
"\nERROR: Bad 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)
166 bool opt_display =
true;
167 bool opt_click_allowed =
true;
170 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
177 #if defined(VISP_HAVE_X11)
179 #elif defined(VISP_HAVE_GTK)
181 #elif defined(VISP_HAVE_GDI)
183 #elif defined(HAVE_OPENCV_HIGHGUI)
190 display.init(I, 100, 100,
"Camera view...");
200 vpERROR_TRACE(
"Error while displaying the image");
219 robot.getPosition(wMc);
231 cylinder.track(cMod);
235 for (
unsigned int i = 0; i < 2; i++)
244 for (
unsigned int i = 0; i < 2; i++) {
272 if (opt_display && opt_click_allowed) {
273 std::cout <<
"\n\nClick in the camera view window to start..." << std::endl;
283 unsigned int iter = 0;
286 std::cout <<
"---------------------------------------------" << iter++ << std::endl;
290 robot.getPosition(wMc);
298 for (
unsigned int i = 0; i < 2; i++) {
315 std::cout <<
"|| s - s* || = " << (task.
getError()).sumSquare() << std::endl;
318 }
while ((task.
getError()).sumSquare() > 1e-9);
320 if (opt_display && opt_click_allowed) {
331 std::cout <<
"Catch a ViSP exception: " << e << std::endl;
336 #elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
339 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
345 std::cout <<
"You do not have X11, or GTK, or GDI (Graphical Device Interface) or OpenCV functionalities to display "
348 std::cout <<
"Tip if you are on a unix-like system:" << std::endl;
349 std::cout <<
"- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
350 std::cout <<
"Tip if you are on a windows-like system:" << std::endl;
351 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...
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 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
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)
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.