Main MRPT website > C++ reference for MRPT 1.9.9
graphslam/include/mrpt/graphslam/types.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #ifndef GRAPH_SLAM_TYPES_H
10 #define GRAPH_SLAM_TYPES_H
11 
13 #include <mrpt/poses/SE_traits.h>
14 #include <functional>
15 
16 namespace mrpt
17 {
18 /** SLAM methods related to graphs of pose constraints
19  * \sa mrpt::graphs::CNetworkOfPoses \ingroup mrpt_graphslam_grp
20  */
21 namespace graphslam
22 {
23 /** \addtogroup mrpt_graphslam_grp
24  * @{ */
25 
26 /** Auxiliary traits template for use among graph-slam problems to make life
27  * easier with these complicated, long data type names
28  * \tparam GRAPH_T This will typically be any
29  * mrpt::graphs::CNetworkOfPoses<...>
30  */
31 template <class GRAPH_T>
33 {
34  /** Typ: mrpt::graphs::CNetworkOfPoses<...> */
35  typedef GRAPH_T graph_t;
37  typedef typename graph_t::constraint_t edge_t;
38  typedef typename edge_t::type_value edge_poses_type;
41  typedef typename SE_TYPE::matrix_VxV_t matrix_VxV_t;
42  typedef typename SE_TYPE::array_t Array_O; // An array of the correct size
43  // for an "observation" (i.e. a
44  // relative pose in an edge)
45  typedef std::pair<matrix_VxV_t, matrix_VxV_t> TPairJacobs;
47  TPairJacobs>::multimap_t
49 
50  /** Auxiliary struct used in graph-slam implementation: It holds the
51  * relevant information for each of the constraints being taking into
52  * account. */
54  {
56  // Data:
58  const typename gst::graph_t::constraint_t::type_value* edge_mean;
59  typename gst::graph_t::constraint_t::type_value *P1, *P2;
60  };
61 
62  using TFunctorFeedback = std::function<void(
63  const GRAPH_T& graph, const size_t iter, const size_t max_iter,
64  const double cur_sq_error)>;
65 };
66 
67 /** Output information for mrpt::graphslam::optimize_graph_spa_levmarq() */
69 {
70  /** The number of LM iterations executed. */
71  size_t num_iters;
72  /** The sum of all the squared errors for every constraint involved in the
73  * problem. */
75 };
76 
77 /** @} */ // end of grouping
78 
79 } // End of namespace
80 } // End of namespace
81 
82 #endif
std::pair< TNodeID, TNodeID > TPairNodeIDs
A pair of node IDs.
mrpt::aligned_containers< mrpt::utils::TPairNodeIDs, TPairJacobs >::multimap_t map_pairIDs_pairJacobs_t
size_t num_iters
The number of LM iterations executed.
GRAPH_T graph_t
Typ: mrpt::graphs::CNetworkOfPoses<...>
const Scalar * const_iterator
Definition: eigen_plugins.h:27
Helper types for STL containers with Eigen memory allocators.
Auxiliary struct used in graph-slam implementation: It holds the relevant information for each of the...
std::pair< matrix_VxV_t, matrix_VxV_t > TPairJacobs
Auxiliary traits template for use among graph-slam problems to make life easier with these complicate...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
std::function< void(const GRAPH_T &graph, const size_t iter, const size_t max_iter, const double cur_sq_error)> TFunctorFeedback
A helper class for SE(2) and SE(3) geometry-related transformations, on-manifold optimization Jacobia...
Definition: SE_traits.h:29
Output information for mrpt::graphslam::optimize_graph_spa_levmarq()
graph_t::edges_map_t::const_iterator edge_const_iterator
typedef void(APIENTRYP PFNGLBLENDCOLORPROC)(GLclampf red
double final_total_sq_error
The sum of all the squared errors for every constraint involved in the problem.
mrpt::poses::SE_traits< edge_poses_type::rotation_dimensions > SE_TYPE



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019