Example of eye-in-hand control law. We control here a real robot, the biclops robot (pan-tilt head provided by Traclabs). The velocity is computed in articular. The visual feature is the center of gravity of a point.
#include <signal.h>
#include <stdlib.h>
#include <visp3/core/vpConfig.h>
#include <visp3/core/vpDebug.h>
#include <visp3/core/vpTime.h>
#if (defined(VISP_HAVE_BICLOPS) && (defined(VISP_HAVE_DC1394) || defined(VISP_HAVE_DIRECTSHOW)))
#ifdef VISP_HAVE_PTHREAD
#include <pthread.h>
#endif
#include <visp3/core/vpDisplay.h>
#include <visp3/core/vpImage.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayGTK.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/sensor/vp1394TwoGrabber.h>
#include <visp3/sensor/vpDirectShowGrabber.h>
#include <visp3/blob/vpDot.h>
#include <visp3/core/vpHomogeneousMatrix.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/core/vpMath.h>
#include <visp3/core/vpPoint.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/robot/vpRobotBiclops.h>
#include <visp3/visual_features/vpFeatureBuilder.h>
#include <visp3/visual_features/vpFeaturePoint.h>
#include <visp3/vs/vpServo.h>
#include <visp3/vs/vpServoDisplay.h>
#include <visp3/core/vpException.h>
#ifdef VISP_HAVE_PTHREAD
pthread_mutex_t mutexEndLoop = PTHREAD_MUTEX_INITIALIZER;
#endif
void signalCtrC(int )
{
#ifdef VISP_HAVE_PTHREAD
pthread_mutex_unlock(&mutexEndLoop);
#endif
}
#define GETOPTARGS "c:d:h"
void usage(const char *name, const char *badparam, std::string &conf, std::string &debugdir, std::string &user)
{
fprintf(stdout, "\n\
Example of eye-in-hand control law. We control here a real robot, the biclops\n\
robot (pan-tilt head provided by Traclabs). The velocity is\n\
computed in articular. The visual feature is the center of gravity of a\n\
point.\n\
\n\
SYNOPSIS\n\
%s [-c <Biclops configuration file>] [-d <debug file directory>] [-h]\n", name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-c <Biclops configuration file> %s\n\
Sets the biclops robot configuration file.\n\n\
-d <debug file directory> %s\n\
Sets the debug file directory.\n\
From this directory, creates the\"%s\"\n\
subdirectory depending on the username, where\n\
it writes biclops.txt file.\n", conf.c_str(), debugdir.c_str(), user.c_str());
if (badparam) {
fprintf(stderr, "ERROR: \n");
fprintf(stderr, "\nBad parameter [%s]\n", badparam);
}
}
bool getOptions(int argc, const char **argv, std::string &conf, std::string &debugdir, std::string &user)
{
const char *optarg_;
int c;
switch (c) {
case 'c':
conf = optarg_;
break;
case 'd':
debugdir = optarg_;
break;
case 'h':
usage(argv[0], NULL, conf, debugdir, user);
return false;
break;
default:
usage(argv[0], optarg_, conf, debugdir, user);
return false;
break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], NULL, conf, debugdir, user);
std::cerr << "ERROR: " << std::endl;
std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
return false;
}
return true;
}
int main(int argc, const char **argv)
{
std::cout << std::endl;
std::cout << "-------------------------------------------------------" << std::endl;
std::cout << " Test program for vpServo " << std::endl;
std::cout << " Eye-in-hand task control, velocity computed in the camera frame" << std::endl;
std::cout << " Simulation " << std::endl;
std::cout << " task : servo a point " << std::endl;
std::cout << "-------------------------------------------------------" << std::endl;
std::cout << std::endl;
try {
#ifdef VISP_HAVE_PTHREAD
pthread_mutex_lock(&mutexEndLoop);
#endif
signal(SIGINT, &signalCtrC);
std::string opt_conf = "/usr/share/BiclopsDefault.cfg";
std::string username;
std::string debugdir;
std::string opt_debugdir;
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
opt_debugdir = "/tmp";
#elif defined(_WIN32)
opt_debugdir = "C:/temp";
#endif
if (getOptions(argc, argv, opt_conf, opt_debugdir, username) == false) {
exit(-1);
}
if (!opt_debugdir.empty())
debugdir = opt_debugdir;
std::string dirname = debugdir + "/" + username;
try {
} catch (...) {
usage(argv[0], NULL, opt_conf, debugdir, username);
std::cerr << std::endl << "ERROR:" << std::endl;
std::cerr << " Cannot create " << dirname << std::endl;
std::cerr << " Check your -d " << debugdir << " option " << std::endl;
exit(-1);
}
}
char filename[FILENAME_MAX];
sprintf(filename, "%s/biclops.txt", debugdir.c_str());
FILE *fd = fopen(filename, "w");
{
q = 0;
}
#if defined VISP_HAVE_DC1394
#elif defined VISP_HAVE_DIRECTSHOW
#endif
try {
} catch (...) {
return (-1);
}
#if defined VISP_HAVE_X11
#elif defined VISP_HAVE_GTK
#elif defined(_WIN32)
#endif
try {
} catch (...) {
return (-1);
}
try {
std::cout << "Click on a dot to initialize the tracking..." << std::endl;
} catch (...) {
return (-1);
}
vpTRACE(
"Set the position of the end-effector frame in the camera frame");
std::cout << cVe << std::endl;
std::cout << "Click in the image to start the servoing..." << std::endl;
unsigned int iter = 0;
#ifdef VISP_HAVE_PTHREAD
while (0 != pthread_mutex_trylock(&mutexEndLoop))
#else
for (;;)
#endif
{
std::cout << "---------------------------------------------" << iter << std::endl;
std::cout <<
"v: " << v.
t();
std::cout <<
"|| s - s* || = " << (task.
getError()).sumSquare() << std::endl;
{
s_minus_sStar = task.
s - task.
sStar;
fprintf(fd,
"%f %f %f %f %f\n", v[0], v[1], s_minus_sStar[0], s_minus_sStar[1], (task.
getError()).sumSquare());
}
}
std::cout << "Display task information " << std::endl;
fclose(fd);
return EXIT_SUCCESS;
}
std::cout <<
"Catch an exception: " << e.
getMessage() << std::endl;
return EXIT_FAILURE;
}
}
#else
int main()
{
std::cout << "You do not have an biclops PT robot connected to your computer..." << std::endl;
return EXIT_SUCCESS;
}
#endif