g2o
edge_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_EDGE_LINE2D_H
28 #define G2O_EDGE_LINE2D_H
29 
30 #include "vertex_line2d.h"
31 #include "g2o/config.h"
33 #include "types_slam2d_addons.h"
34 
35 namespace g2o {
36 
37  class G2O_TYPES_SLAM2D_ADDONS_API EdgeLine2D : public BaseBinaryEdge<2, Line2D, VertexLine2D, VertexLine2D>
38  {
39  public:
40  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
41  EdgeLine2D();
42 
43  void computeError()
44  {
45  const VertexLine2D* v1 = static_cast<const VertexLine2D*>(_vertices[0]);
46  const VertexLine2D* v2 = static_cast<const VertexLine2D*>(_vertices[1]);
47  _error = (v2->estimate()-v1->estimate())-_measurement;
48  }
49  virtual bool read(std::istream& is);
50  virtual bool write(std::ostream& os) const;
51 
52  virtual void setMeasurement(const Line2D& m){
53  _measurement = m;
54  }
55 
56  virtual void setMeasurement(const Vector2D& m){
57  _measurement = m;
58  }
59 
60  virtual bool setMeasurementData(const double* d){
61  Eigen::Map<const Vector2D> m(d);
62  _measurement=Line2D(m);
63  return true;
64  }
65 
66  virtual bool getMeasurementData(double* d) const {
67  Eigen::Map<Vector2D> m(d);
68  m=_measurement;
69  return true;
70  }
71 
72  virtual int measurementDimension() const {return 2;}
73 
74  virtual bool setMeasurementFromState() {
75  const VertexLine2D* v1 = static_cast<const VertexLine2D*>(_vertices[0]);
76  const VertexLine2D* v2 = static_cast<const VertexLine2D*>(_vertices[1]);
77  _measurement = Line2D((Vector2D)(v2->estimate())-(Vector2D)v1->estimate());
78  return true;
79  }
80 
81 
83 #ifndef NUMERIC_JACOBIAN_THREE_D_TYPES
84  virtual void linearizeOplus();
85 #endif
86  };
87 
88 }
89 #endif
Eigen::Matrix< double, 2, 1, Eigen::ColMajor > Vector2D
Definition: eigen_types.h:45
virtual double initialEstimatePossible(const OptimizableGraph::VertexSet &, OptimizableGraph::Vertex *)
Definition: edge_line2d.h:82
void computeError()
Definition: edge_line2d.h:43
virtual void setMeasurement(const Vector2D &m)
Definition: edge_line2d.h:56
std::set< Vertex * > VertexSet
Definition: hyper_graph.h:136
virtual int measurementDimension() const
Definition: edge_line2d.h:72
virtual void setMeasurement(const Line2D &m)
Definition: edge_line2d.h:52
A general case Vertex for optimization.
#define G2O_TYPES_SLAM2D_ADDONS_API
const EstimateType & estimate() const
return the current estimate of the vertex
Definition: base_vertex.h:99
virtual bool setMeasurementFromState()
Definition: edge_line2d.h:74
virtual bool getMeasurementData(double *d) const
Definition: edge_line2d.h:66
virtual bool setMeasurementData(const double *d)
Definition: edge_line2d.h:60