/usr/include/visp/vpPioneer.h is in libvisp-dev 2.8.0-4.
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 | /****************************************************************************
*
* $Id: vpPioneer.h 4056 2013-01-05 13:04:42Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2013 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:
* Common features for Pioneer unicycle mobile robots.
*
* Authors:
* Fabien Spindler
*
*****************************************************************************/
#ifndef VPPIONEER_H
#define VPPIONEER_H
#include <visp/vpRxyzVector.h>
#include <visp/vpTranslationVector.h>
#include <visp/vpUnicycle.h>
/*!
\class vpPioneer
\ingroup Pioneer
\brief Generic functions for Pioneer mobile robots.
This class provides common features for Pioneer mobile robots.
This robot has two control velocities \f$(v_x, w_z)\f$, the translational and
rotational velocities of the mobile platform respectively.
The figure below shows the position of the frames that are used to model the robot.
The end effector frame is here located at the middle point between the two wheels.
\image html pioneer.png
The robot jacobian at the end effector frame, the point located at the
middle between the two wheels is given by:
\f[
{^e}{\bf J}_e = \left(\begin{array}{cc}
1 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 1 \\
\end{array}
\right)
\f]
Considering \f$(v_x, w_z)\f$, it is possible to compute \f$\bf v\f$ the six
dimention velocity skew expressed at the end effector frame by:
\f[
{\bf v} = {^e}{\bf J}_e \;
\left(\begin{array}{c}
v_x \\
w_z \\
\end{array}
\right)
\f].
*/
class VISP_EXPORT vpPioneer: public vpUnicycle
{
public:
/*!
Create a default Pioneer robot.
*/
vpPioneer() : vpUnicycle()
{
set_cMe();
set_eJe();
}
/*!
Destructor that does nothing.
*/
virtual ~vpPioneer() {};
private:
/*!
Set the transformation between the camera frame and the mobile platform
end effector frame.
*/
void set_cMe()
{
// Position of the camera in the mobile platform frame
double l = 0.13; // distance between the camera frame and the mobile robot frame
vpTranslationVector cte; // meters
vpRxyzVector cre; // radian
cte.set(0, 0, -l);
cre.buildFrom(vpMath::rad(90.), 0, vpMath::rad(90.));
cMe_.buildFrom(cte, vpRotationMatrix(cre));
}
/*!
Set the robot jacobian at the end effector frame, the point located at the
middle between the two wheels.
Considering \f${\bf v} = {^e}{\bf J}_e \; [v_x, w_z]\f$ with
\f$(v_x, w_z)\f$ respectively the translational and rotational control velocities
of the mobile robot and \f$\bf v\f$ the six dimention velocity skew expressed at the
end effector frame, the robot jacobian is given by:
\f[
{^e}{\bf J}_e = \left(\begin{array}{cc}
1 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 0 \\
0 & 1 \\
\end{array}
\right)
\f]
*/
void set_eJe()
{
eJe_.resize(6, 2); // pioneer jacobian expressed at point M
eJe_ = 0;
eJe_[0][0] = 1; // vx
eJe_[5][1] = 1; // wz
}
};
#endif
|