63 #include <visp3/core/vpConfig.h> 65 #if defined(VISP_HAVE_VIPER650) && defined(VISP_HAVE_DC1394) && defined(VISP_HAVE_X11) 67 #include <visp3/blob/vpDot2.h> 68 #include <visp3/core/vpHomogeneousMatrix.h> 69 #include <visp3/core/vpIoTools.h> 70 #include <visp3/core/vpPoint.h> 71 #include <visp3/gui/vpDisplayX.h> 72 #include <visp3/robot/vpRobotViper650.h> 73 #include <visp3/sensor/vp1394TwoGrabber.h> 74 #include <visp3/vision/vpPose.h> 75 #include <visp3/visual_features/vpFeatureBuilder.h> 76 #include <visp3/visual_features/vpFeaturePoint.h> 77 #include <visp3/vs/vpServo.h> 78 #include <visp3/vs/vpServoDisplay.h> 80 #define L 0.05 // to deal with a 10cm by 10cm square 100 void compute_pose(std::vector<vpPoint> &point, std::vector<vpDot2> &dot,
vpCameraParameters cam,
107 for (
size_t i = 0; i < point.size(); i++) {
126 if (residual_lagrange < residual_dementhon)
143 std::string username;
148 std::string logdirname;
149 logdirname =
"/tmp/" + username;
157 std::cerr << std::endl <<
"ERROR:" << std::endl;
158 std::cerr <<
" Cannot create " << logdirname << std::endl;
162 std::string logfilename;
163 logfilename = logdirname +
"/log.dat";
166 std::ofstream flog(logfilename.c_str());
176 std::cout <<
"Camera extrinsic parameters (eMc): \n" << eMc << std::endl;
190 vpDisplayX display(I, 100, 100,
"Current image");
194 std::vector<vpDot2> dot(4);
196 std::cout <<
"Click on the 4 dots clockwise starting from upper/left dot..." << std::endl;
198 for (
size_t i = 0; i < dot.size(); i++) {
199 dot[i].setGraphics(
true);
200 dot[i].initTracking(I);
210 std::cout <<
"Camera intrinsic parameters: \n" << cam << std::endl;
214 for (
size_t i = 0; i < dot.size(); i++)
219 std::vector<vpPoint> point(4);
220 point[0].setWorldCoordinates(-L, -L, 0);
221 point[1].setWorldCoordinates(L, -L, 0);
222 point[2].setWorldCoordinates(L, L, 0);
223 point[3].setWorldCoordinates(-L, L, 0);
227 compute_pose(point, dot, cam, cMo,
true);
228 std::cout <<
"Initial camera pose (cMo): \n" << cMo << std::endl;
237 for (
int i = 0; i < 4; i++) {
239 point[i].changeFrame(cMo_d, cP);
240 point[i].projection(cP, p);
248 for (
size_t i = 0; i < dot.size(); i++)
264 std::cout <<
"\nHit CTRL-C or click in the image to stop the loop...\n" << std::flush;
274 for (
size_t i = 0; i < dot.size(); i++) {
283 std::cout <<
"Error detected while tracking visual features.." << std::endl;
290 compute_pose(point, dot, cam, cMo,
false);
292 for (
size_t i = 0; i < dot.size(); i++) {
297 point[i].changeFrame(cMo, cP);
314 flog << v[0] <<
" " << v[1] <<
" " << v[2] <<
" " << v[3] <<
" " << v[4] <<
" " << v[5] <<
" ";
324 flog << qvel[0] <<
" " << qvel[1] <<
" " << qvel[2] <<
" " << qvel[3] <<
" " << qvel[4] <<
" " << qvel[5] <<
" ";
334 flog << q[0] <<
" " << q[1] <<
" " << q[2] <<
" " << q[3] <<
" " << q[4] <<
" " << q[5] <<
" ";
339 flog << task.
getError() << std::endl;
354 std::cout <<
"Display task information: " << std::endl;
361 std::cout <<
"Catched an exception: " << e.
getMessage() << std::endl;
369 std::cout <<
"You do not have an Viper 650 robot connected to your computer..." << std::endl;
bool computePose(vpPoseMethodType method, vpHomogeneousMatrix &cMo, bool(*func)(const vpHomogeneousMatrix &)=NULL)
void setVelocity(const vpRobot::vpControlFrameType frame, const vpColVector &velocity)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
void getVelocity(const vpRobot::vpControlFrameType frame, vpColVector &velocity)
Implementation of an homogeneous matrix and operations on such kind of matrices.
Control of Irisa's Viper S650 robot named Viper650.
void get_eMc(vpHomogeneousMatrix &eMc) const
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
void addFeature(vpBasicFeature &s, vpBasicFeature &s_star, const unsigned int select=vpBasicFeature::FEATURE_ALL)
error that can be emited by ViSP classes.
Class that defines a 2D point visual feature which is composed by two parameters that are the cartes...
static void convertPoint(const vpCameraParameters &cam, const double &u, const double &v, double &x, double &y)
static const vpColor green
void getCameraParameters(vpCameraParameters &cam, const unsigned int &image_width, const unsigned int &image_height) const
static void flush(const vpImage< unsigned char > &I)
void set_y(const double y)
Implementation of a rotation matrix and operations on such kind of matrices.
void set_x(const double x)
vpRobot::vpRobotStateType setRobotState(vpRobot::vpRobotStateType newState)
Initialize the velocity controller.
vpColVector getError() const
vpColVector computeControlLaw()
vpCameraParametersProjType
static void display(const vpImage< unsigned char > &I)
Class used for pose computation from N points (pose from point only). Some of the algorithms implemen...
Generic class defining intrinsic camera parameters.
const char * getMessage(void) const
void setInteractionMatrixType(const vpServoIteractionMatrixType &interactionMatrixType, const vpServoInversionType &interactionMatrixInversion=PSEUDO_INVERSE)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
Implementation of column vector and the associated operations.
void print(const vpServo::vpServoPrintType display_level=ALL, std::ostream &os=std::cout)
Class for firewire ieee1394 video devices using libdc1394-2.x api.
void set_Z(const double Z)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
void addPoint(const vpPoint &P)
void setServo(const vpServoType &servo_type)
Class that consider the case of a translation vector.
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)
double computeResidual(const vpHomogeneousMatrix &cMo) const
Compute and return the sum of squared residuals expressed in meter^2 for the pose matrix cMo...
static const vpColor blue
void getPosition(const vpRobot::vpControlFrameType frame, vpColVector &position)