g2o
Loading...
Searching...
No Matches
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
30#include "g2o/config.h"
33#include "g2o/stuff/misc.h"
36#include "line_2d.h"
37
38namespace g2o {
39
41 public:
44
45 double theta() const { return _estimate[0]; }
46 void setTheta(double t) { _estimate[0] = t; }
47
48 double rho() const { return _estimate[1]; }
49 void setRho(double r) { _estimate[1] = r; }
50
51 virtual void setToOriginImpl() { _estimate.setZero(); }
52
53 virtual bool setEstimateDataImpl(const double* est) {
54 Eigen::Map<const Vector2> v(est);
55 _estimate = Line2D(v);
56 return true;
57 }
58
59 virtual bool getEstimateData(double* est) const {
60 Eigen::Map<Vector2> v(est);
61 v = _estimate;
62 return true;
63 }
64
65 virtual int estimateDimension() const { return 2; }
66
67 virtual bool setMinimalEstimateDataImpl(const double* est) {
68 return setEstimateData(est);
69 }
70
71 virtual bool getMinimalEstimateData(double* est) const {
72 return getEstimateData(est);
73 }
74
75 virtual int minimalEstimateDimension() const { return 2; }
76
77 virtual void oplusImpl(const double* update) {
78 _estimate += Eigen::Map<const Vector2>(update);
79 _estimate(0) = normalize_theta(_estimate(0));
80 }
81
82 virtual bool read(std::istream& is);
83 virtual bool write(std::ostream& os) const;
84 int p1Id, p2Id;
85};
86
87#ifdef G2O_HAVE_OPENGL
88class G2O_TYPES_SLAM2D_ADDONS_API VertexLine2DDrawAction : public DrawAction {
89 public:
90 VertexLine2DDrawAction();
91 virtual HyperGraphElementAction* operator()(
94
95 protected:
96 FloatProperty* _pointSize;
97 virtual bool refreshPropertyPtrs(
99};
100#endif
101
102} // namespace g2o
103
104#endif
Templatized BaseVertex.
Definition base_vertex.h:51
Abstract action that operates on a graph entity.
virtual int estimateDimension() const
void setTheta(double t)
virtual void setToOriginImpl()
sets the node to the origin (used in the multilevel stuff)
void setRho(double r)
virtual bool setMinimalEstimateDataImpl(const double *est)
double theta() const
double rho() const
virtual bool getEstimateData(double *est) const
virtual int minimalEstimateDimension() const
virtual bool getMinimalEstimateData(double *est) const
virtual void oplusImpl(const double *update)
virtual bool setEstimateDataImpl(const double *est)
#define G2O_TYPES_SLAM2D_ADDONS_API
some general case utility functions
double normalize_theta(double theta)
Definition misc.h:103
Property< float > FloatProperty
Definition property.h:150