g2o
Loading...
Searching...
No Matches
edge_se2_sensor_calib.cpp
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
28#ifdef G2O_HAVE_OPENGL
30#endif
31namespace g2o {
32
35
38 (void)to;
39 VertexSE2* vi = static_cast<VertexSE2*>(_vertices[0]);
40 VertexSE2* vj = static_cast<VertexSE2*>(_vertices[1]);
41 VertexSE2* l = static_cast<VertexSE2*>(_vertices[2]);
42 if (from.count(l) == 0) return;
43 if (from.count(vi) == 1) {
44 vj->setEstimate(vi->estimate() * l->estimate() * measurement() *
45 l->estimate().inverse());
46 } else {
48 l->estimate().inverse());
49 }
50}
51
52bool EdgeSE2SensorCalib::read(std::istream& is) {
53 Vector3 p;
55 _measurement.fromVector(p);
57 return readInformationMatrix(is);
58}
59
60bool EdgeSE2SensorCalib::write(std::ostream& os) const {
61 internal::writeVector(os, measurement().toVector());
62 return writeInformationMatrix(os);
63}
64
65#ifdef G2O_HAVE_OPENGL
66EdgeSE2SensorCalibDrawAction::EdgeSE2SensorCalibDrawAction()
67 : DrawAction(typeid(EdgeSE2SensorCalib).name()) {}
68
69HyperGraphElementAction* EdgeSE2SensorCalibDrawAction::operator()(
70 HyperGraph::HyperGraphElement* element,
71 HyperGraphElementAction::Parameters*) {
72 if (typeid(*element).name() != _typeName) return nullptr;
73 EdgeSE2SensorCalib* e = static_cast<EdgeSE2SensorCalib*>(element);
74 VertexSE2* fromEdge = static_cast<VertexSE2*>(e->vertex(0));
75 VertexSE2* toEdge = static_cast<VertexSE2*>(e->vertex(1));
76 glColor3f(0.5, 0.5, 1.0);
77 glPushAttrib(GL_ENABLE_BIT);
78 glDisable(GL_LIGHTING);
79 glBegin(GL_LINES);
80 glVertex3f((float)fromEdge->estimate().translation().x(),
81 (float)fromEdge->estimate().translation().y(), 0.f);
82 glVertex3f((float)toEdge->estimate().translation().x(),
83 (float)toEdge->estimate().translation().y(), 0.f);
84 glEnd();
85 glPopAttrib();
86 return this;
87}
88#endif
89
90} // namespace g2o
bool writeInformationMatrix(std::ostream &os) const
write the upper trinagular part of the information matrix into the stream
Definition base_edge.h:165
bool readInformationMatrix(std::istream &is)
Definition base_edge.h:173
EIGEN_STRONG_INLINE const Measurement & measurement() const
accessor functions for the measurement represented by the edge
Definition base_edge.h:119
Measurement _measurement
the measurement of the edge
Definition base_edge.h:146
const EstimateType & estimate() const
return the current estimate of the vertex
void setEstimate(const EstimateType &et)
set the estimate for the vertex also calls updateCache()
scanmatch measurement that also calibrates an offset for the laser
virtual void initialEstimate(const OptimizableGraph::VertexSet &from, OptimizableGraph::Vertex *to)
virtual bool write(std::ostream &os) const
write the vertex to a stream
virtual bool read(std::istream &is)
read the vertex from a stream, i.e., the internal state of the vertex
VertexContainer _vertices
std::set< Vertex * > VertexSet
A general case Vertex for optimization.
represent SE2
Definition se2.h:43
SE2 inverse() const
invert :-)
Definition se2.h:83
2D pose Vertex, (x,y,theta)
Definition vertex_se2.h:41
bool writeVector(std::ostream &os, const Eigen::DenseBase< Derived > &b)
Definition io_helper.h:36
bool readVector(std::istream &is, Eigen::DenseBase< Derived > &b)
Definition io_helper.h:42
VectorN< 3 > Vector3
Definition eigen_types.h:51