52#include <visp3/core/vpConfig.h>
54#if defined(VISP_HAVE_DISPLAY) && \
55 (defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
60#include <visp3/core/vpCameraParameters.h>
61#include <visp3/core/vpHomogeneousMatrix.h>
62#include <visp3/core/vpImage.h>
63#include <visp3/core/vpMath.h>
64#include <visp3/gui/vpDisplayFactory.h>
65#include <visp3/gui/vpProjectionDisplay.h>
66#include <visp3/io/vpParseArgv.h>
67#include <visp3/robot/vpSimulatorCamera.h>
68#include <visp3/visual_features/vpFeatureBuilder.h>
69#include <visp3/visual_features/vpFeaturePoint.h>
70#include <visp3/vs/vpServo.h>
71#include <visp3/vs/vpServoDisplay.h>
74#define GETOPTARGS "cdh"
76#ifdef ENABLE_VISP_NAMESPACE
80void usage(
const char *name,
const char *badparam);
81bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display);
91void usage(
const char *name,
const char *badparam)
94Tests a control law with the following characteristics:\n\
95- eye-in-hand control\n\
96- articular velocity are computed\n\
97- servo on 4 points,\n\
98- internal and external camera view displays.\n\
101 %s [-c] [-d] [-h]\n",
107 Disable the mouse click. Useful to automate the \n\
108 execution of this program without human intervention.\n\
111 Turn off the display.\n\
117 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
131bool getOptions(
int argc,
const char **argv,
bool &click_allowed,
bool &display)
139 click_allowed =
false;
145 usage(argv[0],
nullptr);
149 usage(argv[0], optarg_);
154 if ((c == 1) || (c == -1)) {
156 usage(argv[0],
nullptr);
157 std::cerr <<
"ERROR: " << std::endl;
158 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
165int main(
int argc,
const char **argv)
168#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
169 std::shared_ptr<vpDisplay> displayInt;
170 std::shared_ptr<vpDisplay> displayExt;
177 bool opt_click_allowed =
true;
178 bool opt_display =
true;
181 if (getOptions(argc, argv, opt_click_allowed, opt_display) ==
false) {
194#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
204 double px = 500, py = 500;
205 double u0 = 150, v0 = 160;
212 std::cout << std::endl;
213 std::cout <<
"----------------------------------------------" << std::endl;
214 std::cout <<
" Test program for vpServo " << std::endl;
215 std::cout <<
" Eye-in-hand task control, articular velocity are computed" << std::endl;
216 std::cout <<
" Simulation " << std::endl;
217 std::cout <<
" task : servo 4 points " << std::endl;
218 std::cout <<
"----------------------------------------------" << std::endl;
219 std::cout << std::endl;
226 robot.getPosition(wMc);
238 for (
unsigned i = 0;
i < 4;
i++)
239 externalview.
insert(point[i]);
243 for (
unsigned i = 0;
i < 4;
i++)
248 for (
unsigned i = 0;
i < 4;
i++)
276 for (
unsigned i = 0;
i < 4;
i++)
277 task.addFeature(p[i], pd[i]);
285 unsigned int iter = 0;
287 while (iter++ < 200) {
288 std::cout <<
"---------------------------------------------" <<
iter << std::endl;
297 robot.getPosition(wMc);
302 for (
unsigned i = 0;
i < 4;
i++) {
324 v =
task.computeControlLaw();
329 std::cout <<
"|| s - s* || = " << (
task.getError()).sumSquare() << std::endl;
335 std::cout <<
"Final robot position with respect to the object frame:\n";
338 if (opt_display && opt_click_allowed) {
343#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
344 if (displayInt !=
nullptr) {
347 if (displayExt !=
nullptr) {
354 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
355#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
356 if (displayInt !=
nullptr) {
359 if (displayExt !=
nullptr) {
366#elif !(defined(VISP_HAVE_LAPACK) || defined(VISP_HAVE_EIGEN3) || defined(VISP_HAVE_OPENCV))
369 std::cout <<
"Cannot run this example: install Lapack, Eigen3 or OpenCV" << std::endl;
375 std::cout <<
"You do not have X11, or GTK, or GDI (Graphical Device Interface) functionalities to display images..."
377 std::cout <<
"Tip if you are on a unix-like system:" << std::endl;
378 std::cout <<
"- Install X11, configure again ViSP using cmake and build again this example" << std::endl;
379 std::cout <<
"Tip if you are on a windows-like system:" << std::endl;
380 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
static const vpColor green
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 point visual feature which is composed by two parameters that are the cartes...
vpFeaturePoint & buildFrom(const double &x, const double &y, const double &Z)
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 double rad(double deg)
Implementation of a matrix and operations on matrices.
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
void setWorldCoordinates(double oX, double oY, double oZ)
interface with the image for feature display
void insert(vpForwardProjection &fp)
void display(vpImage< unsigned char > &I, const vpHomogeneousMatrix &cextMo, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const vpColor &color, const bool &displayTraj=false, unsigned int thickness=1)
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.