g2o
Loading...
Searching...
No Matches
base_dynamic_vertex.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_BASE_DYNAMIC_VERTEX_H
28#define G2O_BASE_DYNAMIC_VERTEX_H
29
30#include <cassert>
31
32#include "base_vertex.h"
33
34namespace g2o {
35template <typename T>
36class BaseDynamicVertex : public BaseVertex<-1, T> {
37 public:
38 inline virtual bool setDimension(int newDimension);
39
40 protected:
41 // This method is responsible for actually changing the dimension of the state
42 virtual bool setDimensionImpl(int newDimension) = 0;
43
44 using BaseVertex<-1, T>::_graph;
45 using BaseVertex<-1, T>::_dimension;
46 using BaseVertex<-1, T>::_b;
47 using BaseVertex<-1, T>::_edges;
48 using BaseVertex<-1, T>::setHessianIndex;
50 using BaseVertex<-1, T>::updateCache;
51};
52
53template <typename T>
54bool BaseDynamicVertex<T>::setDimension(int newDimension) {
55 // Check the dimension is non-negative.
56 assert(newDimension >= 0);
57 if (newDimension < 0) return false;
58
59 // Nothing to do if the dimension is unchanged.
60 if (newDimension == _dimension) return true;
61
62 // Change the state to the requested dimension
63 if (setDimensionImpl(newDimension) == false) return false;
64
65 // Store the old dimension and assign the new
66 int oldDimension = _dimension;
67 _dimension = newDimension;
68
69 // Reset the allocation associated with this vertex and update the cache
70 setHessianIndex(-1);
71 mapHessianMemory(nullptr);
72 _b.resize(_dimension);
73 updateCache();
74
75 // If the dimension is being increased and this vertex is in a
76 // graph, update the size of the Jacobian workspace just in case it
77 // needs to grow.
78 if ((newDimension > oldDimension) && (_graph != nullptr)) {
79 JacobianWorkspace& jacobianWorkspace = _graph->jacobianWorkspace();
80 for (auto e : _edges) jacobianWorkspace.updateSize(e);
81 }
82
83 return true;
84}
85
86} // namespace g2o
87#endif
virtual bool setDimension(int newDimension)
virtual bool setDimensionImpl(int newDimension)=0
Templatized BaseVertex.
Definition base_vertex.h:51
Eigen::Matrix< double, D, 1, Eigen::ColMajor > _b
virtual void mapHessianMemory(double *d)
provide memory workspace for computing the Jacobians
void updateSize(const HyperGraph::Edge *e, bool reset)
void setHessianIndex(int ti)
set the temporary index of the vertex in the parameter blocks