g2o
Loading...
Searching...
No Matches
vertex_se2.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_SE2_H
28#define G2O_VERTEX_SE2_H
29
30#include "g2o/config.h"
34#include "se2.h"
35
36namespace g2o {
37
42 public:
43 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
44 VertexSE2();
45
46 virtual void setToOriginImpl() { _estimate = SE2(); }
47
48 virtual void oplusImpl(const double* update) {
49 Vector2 t = _estimate.translation();
50 t += Eigen::Map<const Vector2>(update);
51 double angle = normalize_theta(_estimate.rotation().angle() + update[2]);
52 _estimate.setTranslation(t);
53 _estimate.setRotation(Rotation2D(angle));
54 }
55
56 virtual bool setEstimateDataImpl(const double* est) {
57 _estimate = SE2(est[0], est[1], est[2]);
58 return true;
59 }
60
61 virtual bool getEstimateData(double* est) const {
62 Eigen::Map<Vector3> v(est);
63 v = _estimate.toVector();
64 return true;
65 }
66
67 virtual int estimateDimension() const { return 3; }
68
69 virtual bool setMinimalEstimateDataImpl(const double* est) {
70 return setEstimateData(est);
71 }
72
73 virtual bool getMinimalEstimateData(double* est) const {
74 return getEstimateData(est);
75 }
76
77 virtual int minimalEstimateDimension() const { return 3; }
78
79 virtual bool read(std::istream& is);
80 virtual bool write(std::ostream& os) const;
81};
82
91
92#ifdef G2O_HAVE_OPENGL
93class G2O_TYPES_SLAM2D_API VertexSE2DrawAction : public DrawAction {
94 public:
95 VertexSE2DrawAction();
96 virtual HyperGraphElementAction* operator()(
99
100 protected:
101 HyperGraphElementAction* _drawActions;
102 virtual bool refreshPropertyPtrs(
104 FloatProperty *_triangleX, *_triangleY;
105};
106#endif
107
108} // namespace g2o
109
110#endif
Templatized BaseVertex.
Definition base_vertex.h:51
Abstract action that operates on a graph entity.
represent SE2
Definition se2.h:43
2D pose Vertex, (x,y,theta)
Definition vertex_se2.h:41
virtual void setToOriginImpl()
sets the node to the origin (used in the multilevel stuff)
Definition vertex_se2.h:46
virtual int estimateDimension() const
Definition vertex_se2.h:67
virtual void oplusImpl(const double *update)
Definition vertex_se2.h:48
virtual bool setEstimateDataImpl(const double *est)
Definition vertex_se2.h:56
virtual bool setMinimalEstimateDataImpl(const double *est)
Definition vertex_se2.h:69
virtual bool getEstimateData(double *est) const
Definition vertex_se2.h:61
virtual int minimalEstimateDimension() const
Definition vertex_se2.h:77
virtual bool getMinimalEstimateData(double *est) const
Definition vertex_se2.h:73
#define G2O_TYPES_SLAM2D_API
double normalize_theta(double theta)
Definition misc.h:103
Eigen::Rotation2D< double > Rotation2D
Definition eigen_types.h:80
VectorN< 2 > Vector2
Definition eigen_types.h:50
Property< float > FloatProperty
Definition property.h:150