|
g2o
|
#include <optimizable_graph.h>


Classes | |
| class | Edge |
| struct | EdgeIDCompare |
| order edges based on the internal ID, which is assigned to the edge in addEdge() More... | |
| class | Vertex |
| A general case Vertex for optimization. More... | |
| struct | VertexIDCompare |
| order vertices based on their ID More... | |
Public Types | |
| enum | ActionType { AT_PREITERATION , AT_POSTITERATION , AT_NUM_ELEMENTS } |
| typedef std::set< HyperGraphAction * > | HyperGraphActionSet |
| typedef std::vector< OptimizableGraph::Vertex * > | VertexContainer |
| vector container for vertices | |
| typedef std::vector< OptimizableGraph::Edge * > | EdgeContainer |
| vector container for edges | |
Public Types inherited from g2o::HyperGraph | |
| typedef std::bitset< HyperGraph::HGET_NUM_ELEMS > | GraphElemBitset |
| typedef std::set< Edge * > | EdgeSet |
| typedef std::set< Vertex * > | VertexSet |
| typedef std::unordered_map< int, Vertex * > | VertexIDMap |
| typedef std::vector< Vertex * > | VertexContainer |
Public Member Functions | |
| Vertex * | vertex (int id) |
| returns the vertex number id appropriately casted | |
| const Vertex * | vertex (int id) const |
| returns the vertex number id appropriately casted | |
| OptimizableGraph () | |
| empty constructor | |
| virtual | ~OptimizableGraph () |
| virtual bool | addVertex (HyperGraph::Vertex *v, Data *userData) |
| virtual bool | addVertex (HyperGraph::Vertex *v) |
| bool | addVertex (OptimizableGraph::Vertex *v, Data *userData) |
| bool | addVertex (OptimizableGraph::Vertex *v) |
| virtual bool | addEdge (HyperGraph::Edge *e) |
| bool | addEdge (OptimizableGraph::Edge *e) |
| virtual bool | setEdgeVertex (HyperGraph::Edge *e, int pos, HyperGraph::Vertex *v) |
| double | chi2 () const |
| returns the chi2 of the current configuration | |
| int | maxDimension () const |
| return the maximum dimension of all vertices in the graph | |
| void | recomputeJacobianWorkspaceSize () |
| std::set< int > | dimensions () const |
| virtual int | optimize (int iterations, bool online=false) |
| virtual void | preIteration (int) |
| virtual void | postIteration (int) |
| bool | addPreIterationAction (HyperGraphAction *action) |
| add an action to be executed before each iteration | |
| bool | addPostIterationAction (HyperGraphAction *action) |
| add an action to be executed after each iteration | |
| bool | removePreIterationAction (HyperGraphAction *action) |
| remove an action that should no longer be executed before each iteration | |
| bool | removePostIterationAction (HyperGraphAction *action) |
| remove an action that should no longer be executed after each iteration | |
| virtual void | push () |
| push the estimate of all variables onto a stack | |
| virtual void | pop () |
| pop (restore) the estimate of all variables from the stack | |
| virtual void | discardTop () |
| virtual bool | load (std::istream &is) |
| bool | load (const char *filename) |
| virtual bool | save (std::ostream &os, int level=0) const |
| save the graph to a stream. Again uses the Factory system. | |
| bool | save (const char *filename, int level=0) const |
| function provided for convenience, see save() above | |
| bool | saveSubset (std::ostream &os, HyperGraph::VertexSet &vset, int level=0) |
| save a subgraph to a stream. Again uses the Factory system. | |
| bool | saveSubset (std::ostream &os, HyperGraph::EdgeSet &eset) |
| save a subgraph to a stream. Again uses the Factory system. | |
| virtual void | push (HyperGraph::VertexSet &vset) |
| push the estimate of a subset of the variables onto a stack | |
| virtual void | pop (HyperGraph::VertexSet &vset) |
| pop (restore) the estimate a subset of the variables from the stack | |
| virtual void | discardTop (HyperGraph::VertexSet &vset) |
| virtual void | setFixed (HyperGraph::VertexSet &vset, bool fixed) |
| fixes/releases a set of vertices | |
| void | setRenamedTypesFromString (const std::string &types) |
| bool | isSolverSuitable (const OptimizationAlgorithmProperty &solverProperty, const std::set< int > &vertDims=std::set< int >()) const |
| virtual void | clearParameters () |
| bool | addParameter (Parameter *p) |
| Parameter * | parameter (int id) |
| bool | verifyInformationMatrices (bool verbose=false) const |
| bool | saveVertex (std::ostream &os, Vertex *v) const |
| bool | saveParameter (std::ostream &os, Parameter *v) const |
| bool | saveEdge (std::ostream &os, Edge *e) const |
| bool | saveUserData (std::ostream &os, HyperGraph::Data *v) const |
| JacobianWorkspace & | jacobianWorkspace () |
| the workspace for storing the Jacobians of the graph | |
| const JacobianWorkspace & | jacobianWorkspace () const |
| ParameterContainer & | parameters () |
| const ParameterContainer & | parameters () const |
| void | forEachVertex (std::function< void(OptimizableGraph::Vertex *)> fn) |
| apply a unary function to all vertices | |
| void | forEachVertex (HyperGraph::VertexSet &vset, std::function< void(OptimizableGraph::Vertex *)> fn) |
| apply a unary function to the vertices in vset | |
Public Member Functions inherited from g2o::HyperGraph | |
| HyperGraph () | |
| constructs an empty hyper graph | |
| virtual | ~HyperGraph () |
| destroys the hyper-graph and all the vertices of the graph | |
| Vertex * | vertex (int id) |
| const Vertex * | vertex (int id) const |
| virtual bool | removeVertex (Vertex *v, bool detach=false) |
| virtual bool | removeEdge (Edge *e) |
| virtual void | clear () |
| clears the graph and empties all structures. | |
| const VertexIDMap & | vertices () const |
| VertexIDMap & | vertices () |
| const EdgeSet & | edges () const |
| EdgeSet & | edges () |
| virtual bool | mergeVertices (Vertex *vBig, Vertex *vSmall, bool erase) |
| virtual bool | detachVertex (Vertex *v) |
| virtual bool | changeId (Vertex *v, int newId) |
Static Public Member Functions | |
| static bool | initMultiThreading () |
Public Attributes | |
| class G2O_CORE_API | Vertex |
| class G2O_CORE_API | Edge |
Public Attributes inherited from g2o::HyperGraph | |
| class G2O_CORE_API | Data |
| class G2O_CORE_API | DataContainer |
| class G2O_CORE_API | Vertex |
| class G2O_CORE_API | Edge |
Protected Member Functions | |
| void | performActions (int iter, HyperGraphActionSet &actions) |
Protected Attributes | |
| std::map< std::string, std::string > | _renamedTypesLookup |
| long long | _nextEdgeId |
| std::vector< HyperGraphActionSet > | _graphActions |
| ParameterContainer | _parameters |
| JacobianWorkspace | _jacobianWorkspace |
Protected Attributes inherited from g2o::HyperGraph | |
| VertexIDMap | _vertices |
| EdgeSet | _edges |
Additional Inherited Members | |
Static Public Attributes inherited from g2o::HyperGraph | |
| static const int | UnassignedId = -1 |
| static const int | InvalidId = -2 |
This is an abstract class that represents one optimization problem. It specializes the general graph to contain special vertices and edges. The vertices represent parameters that can be optimized, while the edges represent constraints. This class also provides basic functionalities to handle the backup/restore of portions of the vertices.
Definition at line 62 of file optimizable_graph.h.
| typedef std::vector<OptimizableGraph::Edge*> g2o::OptimizableGraph::EdgeContainer |
vector container for edges
Definition at line 102 of file optimizable_graph.h.
| typedef std::set<HyperGraphAction*> g2o::OptimizableGraph::HyperGraphActionSet |
Definition at line 69 of file optimizable_graph.h.
| typedef std::vector<OptimizableGraph::Vertex*> g2o::OptimizableGraph::VertexContainer |
vector container for vertices
Definition at line 100 of file optimizable_graph.h.
| Enumerator | |
|---|---|
| AT_PREITERATION | |
| AT_POSTITERATION | |
| AT_NUM_ELEMENTS | |
Definition at line 63 of file optimizable_graph.h.
| g2o::OptimizableGraph::OptimizableGraph | ( | ) |
empty constructor
Definition at line 173 of file optimizable_graph.cpp.
References _graphActions, _nextEdgeId, and AT_NUM_ELEMENTS.
|
virtual |
Definition at line 178 of file optimizable_graph.cpp.
References g2o::HyperGraph::clear(), and clearParameters().
|
virtual |
adds a new edge. The edge should point to the vertices that it is connecting (setFrom/setTo).
Reimplemented from g2o::HyperGraph.
Definition at line 252 of file optimizable_graph.cpp.
References addEdge().
Referenced by g2o::G2oSlamInterface::addEdge(), addEdge(), g2o::addOdometryCalibLinksDifferential(), g2o::assignHierarchicalEdges(), g2o::computeSimpleStars(), main(), main(), main(), Robot::move(), g2o::Gm2dlIO::readGm2dl(), g2o::SensorOdometry< R, E, O >::sense(), g2o::SensorOdometry2D::sense(), g2o::SensorOdometry3D::sense(), g2o::SensorPointXY::sense(), g2o::SensorPointXYBearing::sense(), g2o::SensorPointXYOffset::sense(), g2o::SensorPointXYZ::sense(), g2o::SensorPointXYZDepth::sense(), g2o::SensorPointXYZDisparity::sense(), g2o::SensorPose2D::sense(), g2o::SensorPose3D::sense(), g2o::SensorPose3DOffset::sense(), g2o::SensorSE3Prior::sense(), g2o::SensorSegment2D::sense(), g2o::SensorSegment2DLine::sense(), g2o::SensorSegment2DPointLine::sense(), g2o::UnarySensor< RobotType_, EdgeType_ >::sense(), g2o::BinarySensor< RobotType_, EdgeType_, WorldObjectType_ >::sense(), LineSensor::sense(), and PlaneSensor::sense().
| bool g2o::OptimizableGraph::addEdge | ( | OptimizableGraph::Edge * | e | ) |
Definition at line 220 of file optimizable_graph.cpp.
References __PRETTY_FUNCTION__, g2o::OptimizableGraph::Edge::_internalId, _jacobianWorkspace, _nextEdgeId, g2o::HyperGraph::addEdge(), G2O_ERROR, g2o::OptimizableGraph::Edge::graph(), g2o::HyperGraph::Edge::id(), g2o::HyperGraph::Edge::numUndefinedVertices(), g2o::OptimizableGraph::Edge::resolveCaches(), g2o::OptimizableGraph::Edge::resolveParameters(), and g2o::JacobianWorkspace::updateSize().
|
inline |
Definition at line 715 of file optimizable_graph.h.
Referenced by g2o::World::addParameter(), main(), main(), and main().
| bool g2o::OptimizableGraph::addPostIterationAction | ( | HyperGraphAction * | action | ) |
add an action to be executed after each iteration
Definition at line 711 of file optimizable_graph.cpp.
References _graphActions, and AT_POSTITERATION.
Referenced by main().
| bool g2o::OptimizableGraph::addPreIterationAction | ( | HyperGraphAction * | action | ) |
add an action to be executed before each iteration
Definition at line 717 of file optimizable_graph.cpp.
References _graphActions, and AT_PREITERATION.
Referenced by g2o::RunG2OViewer::run().
|
inlinevirtual |
adds a vertex to the graph. The id of the vertex should be set before invoking this function. the function fails if another vertex with the same id is already in the graph. returns true, on success, or false on failure.
Reimplemented from g2o::HyperGraph.
Definition at line 595 of file optimizable_graph.h.
References addVertex().
Referenced by addVertex().
|
virtual |
adds a new vertex. The new vertex is then "taken".
Definition at line 212 of file optimizable_graph.cpp.
References addVertex().
Referenced by g2o::addOdometryCalibLinksDifferential(), addVertex(), g2o::G2oSlamInterface::addVertex(), g2o::World::addWorldObject(), LineItem::LineItem(), LineSensor::LineSensor(), main(), main(), main(), Robot::move(), PlaneItem::PlaneItem(), PlaneSensor::PlaneSensor(), and g2o::Gm2dlIO::readGm2dl().
|
inline |
Definition at line 597 of file optimizable_graph.h.
References addVertex().
Referenced by addVertex().
| bool g2o::OptimizableGraph::addVertex | ( | OptimizableGraph::Vertex * | v, |
| Data * | userData | ||
| ) |
Definition at line 183 of file optimizable_graph.cpp.
References __PRETTY_FUNCTION__, g2o::OptimizableGraph::Vertex::_graph, g2o::HyperGraph::addVertex(), G2O_ERROR, G2O_WARN, g2o::HyperGraph::Vertex::id(), g2o::HyperGraph::DataContainer::setUserData(), and vertex().
| double g2o::OptimizableGraph::chi2 | ( | ) | const |
returns the chi2 of the current configuration
Definition at line 290 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Edge::chi2(), and g2o::HyperGraph::edges().
|
virtual |
remove the parameters of the graph
Definition at line 793 of file optimizable_graph.cpp.
References _parameters, g2o::HyperGraph::clear(), and g2o::ParameterContainer::clear().
Referenced by ~OptimizableGraph().
| std::set< int > g2o::OptimizableGraph::dimensions | ( | ) | const |
iterates over all vertices and returns a set of all the vertex dimensions in the graph
Definition at line 682 of file optimizable_graph.cpp.
References g2o::HyperGraph::vertices().
Referenced by isSolverSuitable(), MainWindow::load(), and main().
|
virtual |
discard the last backup of the estimate for all variables by removing it from the stack
Reimplemented in g2o::SparseOptimizer, and g2o::SparseOptimizer.
Definition at line 309 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Vertex::discardTop(), and forEachVertex().
|
virtual |
ignore the latest stored element on the stack, remove it from the stack but do not restore the estimate
Reimplemented in g2o::SparseOptimizer.
Definition at line 321 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Vertex::discardTop(), and forEachVertex().
| void g2o::OptimizableGraph::forEachVertex | ( | HyperGraph::VertexSet & | vset, |
| std::function< void(OptimizableGraph::Vertex *)> | fn | ||
| ) |
apply a unary function to the vertices in vset
Definition at line 339 of file optimizable_graph.cpp.
| void g2o::OptimizableGraph::forEachVertex | ( | std::function< void(OptimizableGraph::Vertex *)> | fn | ) |
apply a unary function to all vertices
Definition at line 330 of file optimizable_graph.cpp.
References g2o::HyperGraph::_vertices.
Referenced by discardTop(), discardTop(), pop(), pop(), push(), push(), and setFixed().
|
static |
Eigen starting from version 3.1 requires that we call an initialize function, if we perform calls to Eigen from several threads. Currently, this function calls Eigen::initParallel if g2o is compiled with OpenMP support and Eigen's version is at least 3.1
Definition at line 835 of file optimizable_graph.cpp.
Referenced by main().
| bool g2o::OptimizableGraph::isSolverSuitable | ( | const OptimizationAlgorithmProperty & | solverProperty, |
| const std::set< int > & | vertDims = std::set<int>() |
||
| ) | const |
test whether a solver is suitable for optimizing this graph.
| solverProperty | the solver property to evaluate. |
| vertDims | should equal to the set returned by dimensions() to avoid re-evaluating. |
Definition at line 656 of file optimizable_graph.cpp.
References dimensions().
Referenced by MainWindow::load(), and main().
|
inline |
the workspace for storing the Jacobians of the graph
Definition at line 740 of file optimizable_graph.h.
Referenced by g2o::G2oSlamInterface::addEdge(), g2o::SparseOptimizerOnline::optimize(), and g2o::SparseOptimizerIncremental::updateInitialization().
|
inline |
Definition at line 741 of file optimizable_graph.h.
| bool g2o::OptimizableGraph::load | ( | const char * | filename | ) |
Definition at line 533 of file optimizable_graph.cpp.
|
virtual |
| int g2o::OptimizableGraph::maxDimension | ( | ) | const |
return the maximum dimension of all vertices in the graph
Definition at line 617 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Vertex::dimension(), and g2o::HyperGraph::vertices().
Referenced by g2o::SparseOptimizer::findGauge(), and g2o::SparseOptimizer::gaugeFreedom().
|
virtual |
carry out n iterations
Reimplemented in g2o::SparseOptimizer, g2o::SparseOptimizerIncremental, and g2o::SparseOptimizerOnline.
Definition at line 286 of file optimizable_graph.cpp.
|
inline |
Definition at line 717 of file optimizable_graph.h.
Referenced by main().
|
inline |
Definition at line 753 of file optimizable_graph.h.
|
inline |
Definition at line 754 of file optimizable_graph.h.
|
protected |
Definition at line 693 of file optimizable_graph.cpp.
Referenced by postIteration(), and preIteration().
|
virtual |
pop (restore) the estimate of all variables from the stack
Reimplemented in g2o::SparseOptimizer.
Definition at line 305 of file optimizable_graph.cpp.
References forEachVertex(), and g2o::OptimizableGraph::Vertex::pop().
Referenced by g2o::SparseOptimizer::pop().
|
virtual |
pop (restore) the estimate a subset of the variables from the stack
Reimplemented in g2o::SparseOptimizer.
Definition at line 317 of file optimizable_graph.cpp.
References forEachVertex(), and g2o::OptimizableGraph::Vertex::pop().
|
virtual |
called at the end of an iteration (argument is the number of the iteration)
Definition at line 707 of file optimizable_graph.cpp.
References _graphActions, AT_POSTITERATION, and performActions().
Referenced by g2o::SparseOptimizer::initializeOptimization(), g2o::SparseOptimizer::initializeOptimization(), and g2o::SparseOptimizer::optimize().
|
virtual |
called at the beginning of an iteration (argument is the number of the iteration)
Definition at line 703 of file optimizable_graph.cpp.
References _graphActions, AT_PREITERATION, and performActions().
Referenced by g2o::SparseOptimizer::initializeOptimization(), g2o::SparseOptimizer::initializeOptimization(), and g2o::SparseOptimizer::optimize().
|
virtual |
push the estimate of all variables onto a stack
Reimplemented in g2o::SparseOptimizer.
Definition at line 301 of file optimizable_graph.cpp.
References forEachVertex(), and g2o::OptimizableGraph::Vertex::push().
Referenced by g2o::SparseOptimizer::push().
|
virtual |
push the estimate of a subset of the variables onto a stack
Reimplemented in g2o::SparseOptimizer.
Definition at line 313 of file optimizable_graph.cpp.
References forEachVertex(), and g2o::OptimizableGraph::Vertex::push().
|
inline |
Recompute the size of the Jacobian workspace from all the edges in the graph.
Definition at line 626 of file optimizable_graph.h.
| bool g2o::OptimizableGraph::removePostIterationAction | ( | HyperGraphAction * | action | ) |
remove an action that should no longer be executed after each iteration
Definition at line 727 of file optimizable_graph.cpp.
References _graphActions, and AT_POSTITERATION.
| bool g2o::OptimizableGraph::removePreIterationAction | ( | HyperGraphAction * | action | ) |
remove an action that should no longer be executed before each iteration
Definition at line 723 of file optimizable_graph.cpp.
References _graphActions, and AT_PREITERATION.
| bool g2o::OptimizableGraph::save | ( | const char * | filename, |
| int | level = 0 |
||
| ) | const |
function provided for convenience, see save() above
Definition at line 542 of file optimizable_graph.cpp.
References save().
|
virtual |
| bool g2o::OptimizableGraph::saveEdge | ( | std::ostream & | os, |
| OptimizableGraph::Edge * | e | ||
| ) | const |
Definition at line 774 of file optimizable_graph.cpp.
References g2o::Factory::instance(), saveUserData(), g2o::Factory::tag(), g2o::HyperGraph::UnassignedId, g2o::HyperGraph::DataContainer::userData(), g2o::HyperGraph::Edge::vertices(), and g2o::OptimizableGraph::Edge::write().
| bool g2o::OptimizableGraph::saveParameter | ( | std::ostream & | os, |
| Parameter * | v | ||
| ) | const |
Definition at line 763 of file optimizable_graph.cpp.
References g2o::Parameter::id(), g2o::Factory::instance(), g2o::Factory::tag(), and g2o::Parameter::write().
| bool g2o::OptimizableGraph::saveSubset | ( | std::ostream & | os, |
| HyperGraph::EdgeSet & | eset | ||
| ) |
save a subgraph to a stream. Again uses the Factory system.
| bool g2o::OptimizableGraph::saveSubset | ( | std::ostream & | os, |
| HyperGraph::VertexSet & | vset, | ||
| int | level = 0 |
||
| ) |
save a subgraph to a stream. Again uses the Factory system.
Referenced by g2o::computeSimpleStars(), and main().
| bool g2o::OptimizableGraph::saveUserData | ( | std::ostream & | os, |
| HyperGraph::Data * | v | ||
| ) | const |
Definition at line 731 of file optimizable_graph.cpp.
References g2o::Factory::instance(), g2o::HyperGraph::Data::next(), g2o::Factory::tag(), and g2o::HyperGraph::Data::write().
Referenced by saveEdge(), and saveVertex().
| bool g2o::OptimizableGraph::saveVertex | ( | std::ostream & | os, |
| OptimizableGraph::Vertex * | v | ||
| ) | const |
Definition at line 746 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Vertex::fixed(), g2o::HyperGraph::Vertex::id(), g2o::Factory::instance(), saveUserData(), g2o::Factory::tag(), g2o::HyperGraph::DataContainer::userData(), and g2o::OptimizableGraph::Vertex::write().
|
virtual |
overridden from HyperGraph, to maintain the bookkeeping of the caches/parameters and jacobian workspaces consistent upon a change in the vertex.
Reimplemented from g2o::HyperGraph.
Definition at line 259 of file optimizable_graph.cpp.
References _jacobianWorkspace, G2O_ERROR, g2o::HyperGraph::Edge::numUndefinedVertices(), g2o::OptimizableGraph::Edge::resolveCaches(), g2o::OptimizableGraph::Edge::resolveParameters(), g2o::HyperGraph::setEdgeVertex(), and g2o::JacobianWorkspace::updateSize().
Referenced by anonymizeLandmarkEdge(), and anonymizePoseEdge().
|
virtual |
fixes/releases a set of vertices
Definition at line 325 of file optimizable_graph.cpp.
References forEachVertex(), and g2o::OptimizableGraph::Vertex::setFixed().
Referenced by g2o::computeSimpleStars().
| void g2o::OptimizableGraph::setRenamedTypesFromString | ( | const std::string & | types | ) |
set the renamed types lookup from a string, format is for example: VERTEX_CAM=VERTEX_SE3:EXPMAP,EDGE_PROJECT_P2MC=EDGE_PROJECT_XYZ:EXPMAP This will change the occurrence of VERTEX_CAM in the file to VERTEX_SE3:EXPMAP
Definition at line 628 of file optimizable_graph.cpp.
References __PRETTY_FUNCTION__, _renamedTypesLookup, G2O_DEBUG, G2O_ERROR, g2o::Factory::instance(), g2o::Factory::knowsTag(), g2o::strSplit(), and g2o::trim().
Referenced by main(), and g2o::RunG2OViewer::run().
| bool g2o::OptimizableGraph::verifyInformationMatrices | ( | bool | verbose = false | ) | const |
verify that all the information of the edges are semi positive definite, i.e., all Eigenvalues are >= 0.
| verbose | output edges with not PSD information matrix by logging |
Definition at line 798 of file optimizable_graph.cpp.
References g2o::OptimizableGraph::Edge::dimension(), g2o::HyperGraph::edges(), G2O_WARN, g2o::HyperGraph::Vertex::id(), g2o::OptimizableGraph::Edge::informationData(), g2o::HyperGraph::Edge::vertex(), and g2o::HyperGraph::Edge::vertices().
|
inline |
returns the vertex number id appropriately casted
Definition at line 576 of file optimizable_graph.h.
Referenced by g2o::G2oSlamInterface::addEdge(), addVertex(), g2o::SparseOptimizer::computeMarginals(), g2o::G2oSlamInterface::fixNode(), main(), main(), g2o::G2oSlamInterface::queryState(), g2o::Gm2dlIO::readGm2dl(), g2o::SolverSLAM2DLinear::solveOrientation(), and g2o::Gm2dlIO::updateLaserData().
|
inline |
returns the vertex number id appropriately casted
Definition at line 581 of file optimizable_graph.h.
|
protected |
Definition at line 765 of file optimizable_graph.h.
Referenced by g2o::SparseOptimizer::addComputeErrorAction(), addPostIterationAction(), addPreIterationAction(), g2o::SparseOptimizer::computeActiveErrors(), OptimizableGraph(), postIteration(), preIteration(), g2o::SparseOptimizer::removeComputeErrorAction(), removePostIterationAction(), removePreIterationAction(), and g2o::SparseOptimizer::SparseOptimizer().
|
protected |
Definition at line 768 of file optimizable_graph.h.
Referenced by addEdge(), g2o::SparseOptimizer::initializeOptimization(), g2o::SparseOptimizer::initializeOptimization(), and setEdgeVertex().
|
protected |
Definition at line 764 of file optimizable_graph.h.
Referenced by addEdge(), and OptimizableGraph().
|
protected |
Definition at line 767 of file optimizable_graph.h.
Referenced by clearParameters(), g2o::OptimizableGraph::Edge::resolveParameters(), and g2o::OptimizableGraph::Edge::setParameterId().
|
protected |
Definition at line 763 of file optimizable_graph.h.
Referenced by setRenamedTypesFromString().
Definition at line 73 of file optimizable_graph.h.
Definition at line 72 of file optimizable_graph.h.