g2o
vertex_line2d.h
Go to the documentation of this file.
1 // g2o - General Graph Optimization
2 // Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright notice,
10 // this list of conditions and the following disclaimer.
11 // * Redistributions in binary form must reproduce the above copyright
12 // notice, this list of conditions and the following disclaimer in the
13 // documentation and/or other materials provided with the distribution.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
16 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18 // PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
23 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27 #ifndef G2O_VERTEX_LINE2D_H
28 #define G2O_VERTEX_LINE2D_H
29 
31 #include "g2o/config.h"
32 #include "g2o/core/base_vertex.h"
34 #include "g2o/stuff/misc.h"
36 #include "line_2d.h"
37 
38 #include <Eigen/Core>
39 
40 namespace g2o {
41 
43  {
44  public:
46  VertexLine2D();
47 
48  double theta() const {return _estimate[0]; }
49  void setTheta(double t) { _estimate[0] = t; }
50 
51  double rho() const {return _estimate[1]; }
52  void setRho(double r) { _estimate[1] = r; }
53 
54  virtual void setToOriginImpl() {
55  _estimate.setZero();
56  }
57 
58  virtual bool setEstimateDataImpl(const double* est){
59  Eigen::Map<const Vector2D> v(est);
60  _estimate=Line2D(v);
61  return true;
62  }
63 
64  virtual bool getEstimateData(double* est) const{
65  Eigen::Map<Vector2D> v(est);
66  v=_estimate;
67  return true;
68  }
69 
70  virtual int estimateDimension() const {
71  return 2;
72  }
73 
74  virtual bool setMinimalEstimateDataImpl(const double* est){
75  return setEstimateData(est);
76  }
77 
78  virtual bool getMinimalEstimateData(double* est) const{
79  return getEstimateData(est);
80  }
81 
82  virtual int minimalEstimateDimension() const {
83  return 2;
84  }
85 
86  virtual void oplusImpl(const double* update)
87  {
88  _estimate += Eigen::Map<const Vector2D>(update);
89  _estimate(0) = normalize_theta(_estimate(0));
90  }
91 
92  virtual bool read(std::istream& is);
93  virtual bool write(std::ostream& os) const;
94  int p1Id, p2Id;
95  };
96 
97  /* class G2O_TYPES_SLAM2D_ADDONS_API VertexLine2DWriteGnuplotAction: public WriteGnuplotAction { */
98  /* public: */
99  /* VertexLine2DWriteGnuplotAction(); */
100  /* virtual HyperGraphElementAction* operator()(HyperGraph::HyperGraphElement* element, */
101  /* HyperGraphElementAction::Parameters* params_); */
102  /* }; */
103 
104 #ifdef G2O_HAVE_OPENGL
105  class G2O_TYPES_SLAM2D_ADDONS_API VertexLine2DDrawAction: public DrawAction{
106  public:
107  VertexLine2DDrawAction();
108  virtual HyperGraphElementAction* operator()(HyperGraph::HyperGraphElement* element,
110  protected:
111  FloatProperty *_pointSize;
112  virtual bool refreshPropertyPtrs(HyperGraphElementAction::Parameters* params_);
113  };
114 #endif
115 
116 }
117 
118 #endif
virtual int minimalEstimateDimension() const
Definition: vertex_line2d.h:82
virtual int estimateDimension() const
Definition: vertex_line2d.h:70
some general case utility functions
Abstract action that operates on a graph entity.
virtual void oplusImpl(const double *update)
Definition: vertex_line2d.h:86
Templatized BaseVertex.
Definition: base_vertex.h:50
double theta() const
Definition: vertex_line2d.h:48
virtual bool setMinimalEstimateDataImpl(const double *est)
Definition: vertex_line2d.h:74
void setTheta(double t)
Definition: vertex_line2d.h:49
double normalize_theta(double theta)
Definition: misc.h:94
virtual bool getEstimateData(double *est) const
Definition: vertex_line2d.h:64
#define G2O_TYPES_SLAM2D_ADDONS_API
double rho() const
Definition: vertex_line2d.h:51
virtual bool setEstimateDataImpl(const double *est)
Definition: vertex_line2d.h:58
void setRho(double r)
Definition: vertex_line2d.h:52
virtual void setToOriginImpl()
sets the node to the origin (used in the multilevel stuff)
Definition: vertex_line2d.h:54
virtual bool getMinimalEstimateData(double *est) const
Definition: vertex_line2d.h:78