63 #include <visp3/core/vpTime.h> 64 #include <visp3/core/vpConfig.h> 65 #include <visp3/core/vpDebug.h> 68 #if ( defined (VISP_HAVE_BICLOPS) && (defined (VISP_HAVE_DC1394) || defined(VISP_HAVE_DIRECTSHOW)) ) 70 #ifdef VISP_HAVE_PTHREAD 74 #include <visp3/sensor/vp1394TwoGrabber.h> 75 #include <visp3/sensor/vpDirectShowGrabber.h> 76 #include <visp3/core/vpImage.h> 77 #include <visp3/core/vpDisplay.h> 78 #include <visp3/gui/vpDisplayX.h> 79 #include <visp3/gui/vpDisplayGTK.h> 80 #include <visp3/gui/vpDisplayGDI.h> 82 #include <visp3/core/vpMath.h> 83 #include <visp3/core/vpHomogeneousMatrix.h> 84 #include <visp3/visual_features/vpFeaturePoint.h> 85 #include <visp3/core/vpPoint.h> 86 #include <visp3/vs/vpServo.h> 87 #include <visp3/visual_features/vpFeatureBuilder.h> 88 #include <visp3/robot/vpRobotBiclops.h> 89 #include <visp3/core/vpIoTools.h> 90 #include <visp3/io/vpParseArgv.h> 91 #include <visp3/vs/vpServoDisplay.h> 92 #include <visp3/blob/vpDot.h> 95 #include <visp3/core/vpException.h> 97 #ifdef VISP_HAVE_PTHREAD 98 pthread_mutex_t mutexEndLoop = PTHREAD_MUTEX_INITIALIZER;
101 void signalCtrC(
int )
103 #ifdef VISP_HAVE_PTHREAD 104 pthread_mutex_unlock( &mutexEndLoop );
112 #define GETOPTARGS "c:d:h" 125 void usage(
const char *name,
const char *badparam, std::string& conf, std::string& debugdir, std::string& user)
128 Example of eye-in-hand control law. We control here a real robot, the biclops\n\ 129 robot (pan-tilt head provided by Traclabs). The velocity is\n\ 130 computed in articular. The visual feature is the center of gravity of a\n\ 134 %s [-c <Biclops configuration file>] [-d <debug file directory>] [-h]\n", name);
138 -c <Biclops configuration file> %s\n\ 139 Sets the biclops robot configuration file.\n\n\ 140 -d <debug file directory> %s\n\ 141 Sets the debug file directory.\n\ 142 From this directory, creates the\"%s\"\n\ 143 subdirectory depending on the username, where\n\ 144 it writes biclops.txt file.\n", conf.c_str(), debugdir.c_str(), user.c_str());
147 fprintf(stderr,
"ERROR: \n" );
148 fprintf(stderr,
"\nBad parameter [%s]\n", badparam);
164 bool getOptions(
int argc,
const char **argv, std::string& conf, std::string &debugdir, std::string& user)
171 case 'c': conf = optarg_;
break;
172 case 'd': debugdir = optarg_;
break;
173 case 'h': usage(argv[0], NULL, conf, debugdir, user);
return false;
break;
176 usage(argv[0], optarg_, conf, debugdir, user);
return false;
break;
180 if ((c == 1) || (c == -1)) {
182 usage(argv[0], NULL, conf, debugdir, user);
183 std::cerr <<
"ERROR: " << std::endl;
184 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
194 main(
int argc,
const char ** argv)
196 std::cout << std::endl ;
197 std::cout <<
"-------------------------------------------------------" << std::endl ;
198 std::cout <<
" Test program for vpServo " <<std::endl ;
199 std::cout <<
" Eye-in-hand task control, velocity computed in the camera frame" << std::endl ;
200 std::cout <<
" Simulation " << std::endl ;
201 std::cout <<
" task : servo a point " << std::endl ;
202 std::cout <<
"-------------------------------------------------------" << std::endl ;
203 std::cout << std::endl ;
207 #ifdef VISP_HAVE_PTHREAD 208 pthread_mutex_lock( &mutexEndLoop );
210 signal( SIGINT,&signalCtrC );
213 std::string opt_conf =
"/usr/share/BiclopsDefault.cfg";
215 std::string username;
216 std::string debugdir;
217 std::string opt_debugdir;
220 #if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX 221 opt_debugdir =
"/tmp";
222 #elif defined(_WIN32) 223 opt_debugdir =
"C:/temp";
230 if (getOptions(argc, argv, opt_conf, opt_debugdir , username) ==
false) {
235 if (!opt_debugdir.empty())
236 debugdir = opt_debugdir;
239 std::string dirname = debugdir +
"/" + username;
248 usage(argv[0], NULL, opt_conf, debugdir, username);
249 std::cerr << std::endl
250 <<
"ERROR:" << std::endl;
251 std::cerr <<
" Cannot create " << dirname << std::endl;
252 std::cerr <<
" Check your -d " << debugdir <<
" option " << std::endl;
258 char *filename =
new char[FILENAME_MAX];
259 sprintf(filename,
"%s/biclops.txt", debugdir.c_str());
260 FILE *fd = fopen(filename,
"w");
273 #if defined VISP_HAVE_DC1394 275 #elif defined VISP_HAVE_DIRECTSHOW 292 #if defined VISP_HAVE_X11 293 vpDisplayX display(I, 100, 100,
"Display X...") ;
294 #elif defined VISP_HAVE_GTK 296 #elif defined(_WIN32) 316 std::cout <<
"Click on a dot to initialize the tracking..." << std::endl;
346 vpTRACE(
"Set the position of the camera in the end-effector frame ") ;
352 std::cout << cVe <<std::endl ;
355 std::cout <<
"Click in the image to start the servoing..." << std::endl;
374 unsigned int iter=0 ;
376 #ifdef VISP_HAVE_PTHREAD 377 while( 0 != pthread_mutex_trylock( &mutexEndLoop ) )
382 std::cout <<
"---------------------------------------------" << iter <<std::endl ;
407 std::cout <<
"v: " << v.
t() ;
410 std::cout <<
"|| s - s* || = " << ( task.
getError() ).sumSquare() << std::endl;
414 s_minus_sStar = task.
s - task.
sStar;
415 fprintf(fd,
"%f %f %f %f %f\n",
417 s_minus_sStar[0], s_minus_sStar[1],
422 std::cout <<
"Display task information " << std::endl;
437 vpERROR_TRACE(
"You don't have a biclops head connected to your computer or 1394 framegrabbing capabilities...");
void setPosition(const vpHomogeneousMatrix &wMc)
Implementation of a matrix and operations on matrices.
VISP_EXPORT int wait(double t0, double t)
void setVelocity(const vpRobot::vpControlFrameType frame, const vpColVector &vel)
Implementation of an homogeneous matrix and operations on such kind of matrices.
Display for windows using GDI (available on any windows 32 platform).
void set_eJe(const vpMatrix &eJe_)
Define the X11 console to display images.
void addFeature(vpBasicFeature &s, vpBasicFeature &s_star, const unsigned int select=vpBasicFeature::FEATURE_ALL)
Initialize the position controller.
void track(const vpImage< unsigned char > &I)
Class that defines a 2D point visual feature which is composed by two parameters that are the cartes...
class for windows direct show devices
static void flush(const vpImage< unsigned char > &I)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
virtual vpRobotStateType setRobotState(const vpRobot::vpRobotStateType newState)
void get_cVe(vpVelocityTwistMatrix &cVe) const
Initialize the velocity controller.
vpColVector getError() const
vpColVector computeControlLaw()
static void display(const vpImage< unsigned char > &I)
void acquire(vpImage< unsigned char > &I)
Generic class defining intrinsic camera parameters.
The vpDisplayGTK allows to display image using the GTK+ library version 1.2.
Implementation of a velocity twist matrix and operations on such kind of matrices.
Interface for the biclops, pan, tilt head control.
void setInteractionMatrixType(const vpServoIteractionMatrixType &interactionMatrixType, const vpServoInversionType &interactionMatrixInversion=PSEUDO_INVERSE)
void buildFrom(const double x, const double y, const double Z)
Implementation of column vector and the associated operations.
void setGraphics(const bool activate)
void set_cVe(const vpVelocityTwistMatrix &cVe_)
void print(const vpServo::vpServoPrintType display_level=ALL, std::ostream &os=std::cout)
This tracker is meant to track a dot (connected pixels with same gray level) on a vpImage...
Class for firewire ieee1394 video devices using libdc1394-2.x api.
virtual bool getClick(bool blocking=true)=0
void set_Z(const double Z)
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
void get_eJe(vpMatrix &eJe)
void setServo(const vpServoType &servo_type)
void initTracking(const vpImage< unsigned char > &I)
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)