/usr/include/visp/vpRobotViper650.h is in libvisp-dev 2.9.0-3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | /****************************************************************************
*
* $Id: vpRobotViper650.h 4574 2014-01-09 08:48:51Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact INRIA about acquiring a ViSP Professional
* Edition License.
*
* See http://www.irisa.fr/lagadic/visp/visp.html for more information.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact
* INRIA at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
*
* Description:
* Interface for the Irisa's Viper S650 robot controlled by an Adept MotionBlox.
*
* Authors:
* Fabien Spindler
*
*****************************************************************************/
#ifndef vpRobotViper650_h
#define vpRobotViper650_h
#include <visp/vpConfig.h>
#ifdef VISP_HAVE_VIPER650
#include <iostream>
#include <stdio.h>
#include <visp/vpRobot.h>
#include <visp/vpColVector.h>
#include <visp/vpDebug.h>
#include <visp/vpViper650.h>
// low level controller api
extern "C" {
# include "irisa_Viper650.h"
# include "trycatch.h"
}
/*!
\class vpRobotViper650
\ingroup Viper RobotDriver
\brief Control of Irisa's Viper S650 robot named Viper650.
Implementation of the vpRobot class in order to control Irisa's
Viper650 robot. This robot is an ADEPT six degrees of freedom arm.
A firewire camera is mounted on the end-effector to allow
eye-in-hand visual servoing. The control of this camera is achieved
by the vp1394TwoGrabber class.
This class allows to control the Viper650 arm robot in position
and velocity:
- in the joint space (vpRobot::ARTICULAR_FRAME),
- in the fixed reference frame (vpRobot::REFERENCE_FRAME),
- in the camera frame (vpRobot::CAMERA_FRAME),
- or in a mixed frame (vpRobot::MIXT_FRAME) where translations are expressed
in the reference frame and rotations in the camera frame.
All the translations are expressed in meters for positions and m/s
for the velocities. Rotations are expressed in radians for the
positions, and rad/s for the rotation velocities.
The direct and inverse kinematics models are implemented in the
vpViper650 class.
\warning A Ctrl-C, a segmentation fault or other system errors are
catched by this class to stop the robot.
To communicate with the robot, you may first create an instance of this
class by calling the default constructor:
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
int main()
{
#ifdef VISP_HAVE_VIPER650
vpRobotViper650 robot;
#endif
}
\endcode
This initialize the robot kinematics with the \f$^e{\bf M}_c\f$
extrinsic camera parameters obtained with a projection model without
distortion. To set the robot kinematics with the \f$^e{\bf M}_c\f$
transformation obtained with a camera perspective model including
distortion you need to initialize the robot with:
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
int main()
{
#ifdef VISP_HAVE_VIPER650
vpRobotViper650 robot;
// Set the extrinsic camera parameters obtained with a perpective
// projection model including a distortion parameter
robot.init(vpViper650::TOOL_MARLIN_F033C_CAMERA,
vpCameraParameters::perspectiveProjWithDistortion);
#endif
}
\endcode
You can get the intrinsic camera parameters of an image
acquired by the camera attached to the robot, with:
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
#include <visp/vpImage.h>
#include <visp/vp1394TwoGrabber.h>
#include <visp/vpCameraParameters.h>
int main()
{
#if defined(VISP_HAVE_VIPER650) && defined(VISP_HAVE_DC1394_2)
vpImage<unsigned char> I;
vp1394TwoGrabber g;
g.acquire(I);
vpRobotViper650 robot;
// ...
vpCameraParameters cam;
robot.getCameraParameters(cam, I);
// In cam, you get the intrinsic parameters of the projection model
// with distortion.
#endif
}
\endcode
To control the robot in position, you may set the controller
to position control and than send the position to reach in a specific
frame like here in the joint space:
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
#include <visp/vpColVector.h>
#include <visp/vpMath.h>
int main()
{
#ifdef VISP_HAVE_VIPER650
vpRobotViper650 robot;
vpColVector q(6);
// Set a joint position
q[0] = vpMath::rad(10); // Joint 1 position, in rad
q[1] = 0.2; // Joint 2 position, in rad
q[2] = 0.3; // Joint 3 position, in rad
q[3] = M_PI/8; // Joint 4 position, in rad
q[4] = M_PI/4; // Joint 5 position, in rad
q[5] = M_PI; // Joint 6 position, in rad
// Initialize the controller to position control
robot.setRobotState(vpRobot::STATE_POSITION_CONTROL);
// Moves the robot in the joint space
robot.setPosition(vpRobot::ARTICULAR_FRAME, q);
#endif
}
\endcode
The robot moves to the specified position with the default
positioning velocity vpRobotViper650::defaultPositioningVelocity. The
setPositioningVelocity() method allows to change the maximal
velocity used to reach the desired position.
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
#include <visp/vpColVector.h>
#include <visp/vpMath.h>
int main()
{
#ifdef VISP_HAVE_VIPER650
vpRobotViper650 robot;
vpColVector q(6);
// Set q[i] with i in [0:5]
// Initialize the controller to position control
robot.setRobotState(vpRobot::STATE_POSITION_CONTROL);
// Set the max velocity to 40%
robot.setPositioningVelocity(40);
// Moves the robot in the joint space
robot.setPosition(vpRobot::ARTICULAR_FRAME, q);
#endif
}
\endcode
To control the robot in velocity, you may set the controller to
velocity control and than send the velocities. To end the velocity
control and stop the robot you have to set the controller to the
stop state. Here is an example of a velocity control in the joint
space:
\code
#include <visp/vpConfig.h>
#include <visp/vpRobotViper650.h>
#include <visp/vpColVector.h>
#include <visp/vpMath.h>
int main()
{
#ifdef VISP_HAVE_VIPER650
vpRobotViper650 robot;
vpColVector qvel(6);
// Set a joint velocity
qvel[0] = 0.1; // Joint 1 velocity in rad/s
qvel[1] = vpMath::rad(15); // Joint 2 velocity in rad/s
qvel[2] = 0; // Joint 3 velocity in rad/s
qvel[3] = M_PI/8; // Joint 4 velocity in rad/s
qvel[4] = 0; // Joint 5 velocity in rad/s
qvel[5] = 0; // Joint 6 velocity in rad/s
// Initialize the controller to position control
robot.setRobotState(vpRobot::STATE_VELOCITY_CONTROL);
for ( ; ; ) {
// Apply a velocity in the joint space
robot.setVelocity(vpRobot::ARTICULAR_FRAME, qvel);
// Compute new velocities qvel...
}
// Stop the robot
robot.setRobotState(vpRobot::STATE_STOP);
#endif
}
\endcode
It is also possible to measure the robot current position with
getPosition() method and the robot current velocities with the getVelocity()
method.
For convenience, there is also the ability to read/write joint
positions from a position file with readPosFile() and savePosFile()
methods.
*/
class VISP_EXPORT vpRobotViper650
:
public vpViper650,
public vpRobot
{
public: /* Constantes */
/*! \enum vpControlModeType Control mode. */
typedef enum {
AUTO, //!< Automatic control mode (default).
MANUAL, //!< Manual control mode activated when the dead man switch is in use.
ESTOP //!< Emergency stop activated.
} vpControlModeType;
/* Vitesse maximale par default lors du positionnement du robot.
* C'est la valeur a la construction de l'attribut prive \a
* positioningVelocity. Cette valeur peut etre changee par la fonction
* #setPositioningVelocity.
*/
static const double defaultPositioningVelocity; // = 20.0;
private: /* Not allowed functions. */
/*!
Copy constructor not allowed.
*/
vpRobotViper650 (const vpRobotViper650 & robot);
private: /* Attributs prives. */
/** \brief Vrai ssi aucun objet de la classe vpRobotViper650 n'existe.
*
* Il ne peut exister simultanement qu'un seul objet de la classe
* vpRobotViper650, car il correspond a un seul robot AFMA6. Creer
* simultanement deux objets peut engendrer des conflits. Le constructeur
* lance une erreur si le champ n'est pas FAUX puis positionne le champ
* a VRAI. Seul le destructeur repositionne le champ a FAUX, ce qui
* alors la creation d'un nouvel objet.
*/
static bool robotAlreadyCreated;
double positioningVelocity;
// Variables used to compute the measured velocities (see getVelocity() )
vpColVector q_prev_getvel;
vpHomogeneousMatrix fMc_prev_getvel;
double time_prev_getvel;
bool first_time_getvel;
// Variables used to compute the measured displacement (see
// getDisplacement() )
vpColVector q_prev_getdis;
bool first_time_getdis;
vpControlModeType controlMode;
public: /* Methode publiques */
vpRobotViper650 (bool verbose=true);
virtual ~vpRobotViper650 (void);
// Force/Torque control
void biasForceTorqueSensor() const;
void disableJoint6Limits() const;
void enableJoint6Limits() const;
/*!
\return The control mode indicating if the robot is in automatic,
manual (usage of the dead man switch) or emergnecy stop mode.
*/
vpControlModeType getControlMode() const {
return controlMode;
}
void getDisplacement(vpRobot::vpControlFrameType frame,
vpColVector &displacement);
void getForceTorque(vpColVector &H) const;
void getPosition (const vpRobot::vpControlFrameType frame,
vpColVector &position);
void getPosition (const vpRobot::vpControlFrameType frame,
vpColVector &position,
double ×tamp);
void getPosition (const vpRobot::vpControlFrameType frame,
vpPoseVector &position);
void getPosition (const vpRobot::vpControlFrameType frame,
vpPoseVector &position,
double ×tamp);
double getPositioningVelocity (void) const;
bool getPowerState() const;
double getTime () const;
void getVelocity (const vpRobot::vpControlFrameType frame,
vpColVector & velocity);
void getVelocity (const vpRobot::vpControlFrameType frame,
vpColVector & velocity, double ×tamp);
vpColVector getVelocity (const vpRobot::vpControlFrameType frame);
vpColVector getVelocity (const vpRobot::vpControlFrameType frame, double ×tamp);
void get_cMe(vpHomogeneousMatrix &cMe) const;
void get_cVe(vpVelocityTwistMatrix &cVe) const;
void get_eJe(vpMatrix &eJe);
void get_fJe(vpMatrix &fJe);
void init (void);
void init (vpViper650::vpToolType tool,
vpCameraParameters::vpCameraParametersProjType
projModel = vpCameraParameters::perspectiveProjWithoutDistortion);
void move(const char *filename);
void powerOn();
void powerOff();
static bool readPosFile(const char *filename, vpColVector &q);
static bool savePosFile(const char *filename, const vpColVector &q);
// Position control
void setPosition(const vpRobot::vpControlFrameType frame,
const vpColVector &position) ;
void setPosition (const vpRobot::vpControlFrameType frame,
const double pos1, const double pos2, const double pos3,
const double pos4, const double pos5, const double pos6) ;
void setPosition(const char *filename) ;
void setPositioningVelocity (const double velocity);
// State
vpRobot::vpRobotStateType setRobotState (vpRobot::vpRobotStateType newState);
// Velocity control
void setVelocity (const vpRobot::vpControlFrameType frame,
const vpColVector & velocity);
void stopMotion();
private:
void getArticularDisplacement(vpColVector &displacement);
void getCameraDisplacement(vpColVector &displacement);
};
#endif
#endif /* #ifndef vpRobotViper650_h */
|