Main MRPT website > C++ reference for MRPT 1.9.9
CRangeScanEdgeRegistrationDecider.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 CRANGESCANEDGEREGISTRATIONDECIDER_H
10 #define CRANGESCANEDGEREGISTRATIONDECIDER_H
11 
15 
16 namespace mrpt
17 {
18 namespace graphslam
19 {
20 namespace deciders
21 {
22 /**\brief Edge Registration Decider Interface from which RangeScanner-based
23  * ERDs can inherit from.
24  *
25  * Holds common vars for the underlying classesand provides methods for
26  * accessing and modifying them.
27  *
28  * \note Since the decider inherits from the CRangeScanOps
29  * class, it parses the configuration parameters of the latter as well from the
30  * "ICP" section. Refer to the CRangeScanOps documentation for
31  * its list of configuration parameters
32  */
33 template <class GRAPH_T>
35  : public virtual CEdgeRegistrationDecider<GRAPH_T>,
36  public CRangeScanOps<GRAPH_T>
37 {
38  public:
41  /**\brief Typedef for accessing methods of the
42  * RangeScanRegistrationDecider_t parent class.
43  */
45  typedef std::map<mrpt::utils::TNodeID,
48 
51 
52  protected:
53  /**\name Relevant-observations manipulation
54  * Methods for manipulating the underlying storage of the
55  * observation that the specific decider implementations.
56  * \note Defining a generic way of dealing with the underlying
57  * measurements, allows for flexible storage as well as possible
58  * modification to the method behavior.
59  */
60  /**\{ */
61  /**\brief Fetch the latest observation that the current instance
62  * received (most probably during a call to the updateState method.
63  */
64  // TODO - Implement these
65  /**\} */
66 
67  virtual void loadParams(const std::string& source_fname);
68  virtual void printParams() const;
69  /**\brief Map for keeping track of the observation recorded at each graph
70  * position
71  */
73  /**\brief Keep track of the total number of registered nodes since the last
74  * time class method was called
75  */
77 
78  private:
79 };
80 }
81 }
82 } // end of namespaces
83 
85 
86 #endif /* end of include guard: CRANGESCANEDGEREGISTRATIONDECIDER_H */
virtual void loadParams(const std::string &source_fname)
Fetch the latest observation that the current instance received (most probably during a call to the u...
virtual void printParams() const
Print the problem parameters - relevant to the decider/optimizer to the screen in a unified/compact w...
mrpt::graphslam::deciders::CEdgeRegistrationDecider< GRAPH_T > parent_t
Interface for implementing edge registration classes.
size_t m_last_total_num_nodes
Keep track of the total number of registered nodes since the last time class method was called...
Edge Registration Decider Interface from which RangeScanner-based ERDs can inherit from...
std::shared_ptr< CObservation2DRangeScan > Ptr
std::map< mrpt::utils::TNodeID, mrpt::obs::CObservation2DRangeScan::Ptr > nodes_to_scans2D_t
uint64_t TNodeID
The type for node IDs in graphs of different types.
mrpt::graphslam::deciders::CRangeScanOps< GRAPH_T > range_ops_t
Typedef for accessing methods of the RangeScanRegistrationDecider_t parent class. ...
GLsizei const GLchar ** string
Definition: glext.h:4101
Class for keeping together all the RangeScanner-related functions.
Definition: CRangeScanOps.h:85
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
nodes_to_scans2D_t m_nodes_to_laser_scans2D
Map for keeping track of the observation recorded at each graph position.



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