sot-core  4.11.8
Hierarchical task solver plug-in for dynamic-graph.
feature-line-distance.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2010,
3  * François Bleibel,
4  * Olivier Stasse,
5  *
6  * CNRS/AIST
7  *
8  */
9 
10 #ifndef __SOT_FEATURE_LINEDISTANCE_HH__
11 #define __SOT_FEATURE_LINEDISTANCE_HH__
12 
13 /* --------------------------------------------------------------------- */
14 /* --- INCLUDE --------------------------------------------------------- */
15 /* --------------------------------------------------------------------- */
16 
17 /* SOT */
21 /* --------------------------------------------------------------------- */
22 /* --- API ------------------------------------------------------------- */
23 /* --------------------------------------------------------------------- */
24 
25 #if defined(WIN32)
26 #if defined(feature_line_distance_EXPORTS)
27 #define SOTFEATURELINEDISTANCE_EXPORT __declspec(dllexport)
28 #else
29 #define SOTFEATURELINEDISTANCE_EXPORT __declspec(dllimport)
30 #endif
31 #else
32 #define SOTFEATURELINEDISTANCE_EXPORT
33 #endif
34 
35 /* --------------------------------------------------------------------- */
36 /* --- CLASS ----------------------------------------------------------- */
37 /* --------------------------------------------------------------------- */
38 
39 namespace dynamicgraph {
40 namespace sot {
41 
47  : public FeatureAbstract {
48  public:
49  static const std::string CLASS_NAME;
50  virtual const std::string &getClassName(void) const { return CLASS_NAME; }
51 
52  protected:
53  /* --- SIGNALS ------------------------------------------------------------ */
54  public:
55  dynamicgraph::SignalPtr<MatrixHomogeneous, int> positionSIN;
56  dynamicgraph::SignalPtr<dynamicgraph::Matrix, int> articularJacobianSIN;
57  dynamicgraph::SignalPtr<dynamicgraph::Vector, int> positionRefSIN;
58  dynamicgraph::SignalPtr<dynamicgraph::Vector, int> vectorSIN;
59  dynamicgraph::SignalTimeDependent<dynamicgraph::Vector, int> lineSOUT;
60 
64 
71  public:
72  FeatureLineDistance(const std::string &name);
73  virtual ~FeatureLineDistance(void) {}
74 
75  virtual unsigned int &getDimension(unsigned int &dim, int time);
76 
77  virtual dynamicgraph::Vector &computeError(dynamicgraph::Vector &res,
78  int time);
79  virtual dynamicgraph::Matrix &computeJacobian(dynamicgraph::Matrix &res,
80  int time);
81  dynamicgraph::Vector &computeLineCoordinates(dynamicgraph::Vector &cood,
82  int time);
83 
84  virtual void display(std::ostream &os) const;
85 };
86 
87 } /* namespace sot */
88 } /* namespace dynamicgraph */
89 
90 #endif // #ifndef __SOT_FEATURE_LINEDISTANCE_HH__
91 
92 /*
93  * Local variables:
94  * c-basic-offset: 2
95  * End:
96  */
This class gives the abstract definition of a feature.
Definition: feature-abstract.hh:76
SignalTimeDependent< dynamicgraph::Matrix, int > jacobianSOUT
Jacobian of the error wrt the robot state: .
Definition: feature-abstract.hh:193
SignalTimeDependent< dynamicgraph::Vector, int > errorSOUT
This signal returns the error between the desired value and the current value : .
Definition: feature-abstract.hh:185
SignalPtr< Flags, int > selectionSIN
This vector specifies which dimension are used to perform the computation. For instance let us assume...
Definition: feature-abstract.hh:173
Class that defines point-3d control feature.
Definition: feature-line-distance.hh:47
virtual unsigned int & getDimension(unsigned int &dim, int time)
Verbose method.
virtual dynamicgraph::Vector & computeError(dynamicgraph::Vector &res, int time)
Compute the error between the desired feature and the current value of the feature measured or deduce...
dynamicgraph::SignalPtr< dynamicgraph::Vector, int > vectorSIN
Definition: feature-line-distance.hh:58
virtual const std::string & getClassName(void) const
Returns the name class.
Definition: feature-line-distance.hh:50
static const std::string CLASS_NAME
Definition: feature-line-distance.hh:49
dynamicgraph::SignalTimeDependent< dynamicgraph::Vector, int > lineSOUT
Definition: feature-line-distance.hh:59
dynamicgraph::SignalPtr< dynamicgraph::Matrix, int > articularJacobianSIN
Definition: feature-line-distance.hh:56
DECLARE_NO_REFERENCE
Definition: feature-line-distance.hh:68
dynamicgraph::SignalPtr< dynamicgraph::Vector, int > positionRefSIN
Definition: feature-line-distance.hh:57
virtual void display(std::ostream &os) const
FeatureLineDistance(const std::string &name)
virtual ~FeatureLineDistance(void)
Definition: feature-line-distance.hh:73
virtual dynamicgraph::Matrix & computeJacobian(dynamicgraph::Matrix &res, int time)
Compute the Jacobian of the error according the robot state.
dynamicgraph::Vector & computeLineCoordinates(dynamicgraph::Vector &cood, int time)
dynamicgraph::SignalPtr< MatrixHomogeneous, int > positionSIN
Definition: feature-line-distance.hh:55
#define SOTFEATURELINEDISTANCE_EXPORT
Definition: feature-line-distance.hh:32
Definition: abstract-sot-external-interface.hh:17