MRPT  2.0.3
CRangeScanEdgeRegistrationDecider.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
14 
16 {
17 /**\brief Edge Registration Decider Interface from which RangeScanner-based
18  * ERDs can inherit from.
19  *
20  * Holds common vars for the underlying classesand provides methods for
21  * accessing and modifying them.
22  *
23  * \note Since the decider inherits from the CRangeScanOps
24  * class, it parses the configuration parameters of the latter as well from the
25  * "ICP" section. Refer to the CRangeScanOps documentation for
26  * its list of configuration parameters
27  */
28 template <class GRAPH_T>
30  : public virtual CEdgeRegistrationDecider<GRAPH_T>,
31  public CRangeScanOps<GRAPH_T>
32 {
33  public:
34  using parent_t =
36  /**\brief Typedef for accessing methods of the
37  * RangeScanRegistrationDecider_t parent class.
38  */
40  using nodes_to_scans2D_t = std::map<
42 
44  ~CRangeScanEdgeRegistrationDecider() override = default;
45 
46  protected:
47  void loadParams(const std::string& source_fname) override;
48  void printParams() const override;
49  /**\brief Map for keeping track of the observation recorded at each graph
50  * position
51  */
53  /**\brief Keep track of the total number of registered nodes since the last
54  * time class method was called
55  */
57 };
58 } // namespace mrpt::graphslam::deciders
CRangeScanEdgeRegistrationDecider_impl.h
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::m_nodes_to_laser_scans2D
nodes_to_scans2D_t m_nodes_to_laser_scans2D
Map for keeping track of the observation recorded at each graph position.
Definition: CRangeScanEdgeRegistrationDecider.h:52
mrpt::graphslam::deciders::CEdgeRegistrationDecider
Interface for implementing edge registration classes.
Definition: CEdgeRegistrationDecider.h:36
mrpt::graphs::TNodeID
uint64_t TNodeID
A generic numeric type for unique IDs of nodes or entities.
Definition: TNodeID.h:16
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::~CRangeScanEdgeRegistrationDecider
~CRangeScanEdgeRegistrationDecider() override=default
CEdgeRegistrationDecider.h
CRangeScanOps.h
mrpt::obs::CObservation2DRangeScan::Ptr
std::shared_ptr< mrpt::obs ::CObservation2DRangeScan > Ptr
Definition: CObservation2DRangeScan.h:56
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::printParams
void printParams() const override
Definition: CRangeScanEdgeRegistrationDecider_impl.h:26
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider< typename mrpt::graphs::CNetworkOfPoses2DInf >::nodes_to_scans2D_t
std::map< mrpt::graphs::TNodeID, mrpt::obs::CObservation2DRangeScan::Ptr > nodes_to_scans2D_t
Definition: CRangeScanEdgeRegistrationDecider.h:41
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::m_last_total_num_nodes
size_t m_last_total_num_nodes
Keep track of the total number of registered nodes since the last time class method was called.
Definition: CRangeScanEdgeRegistrationDecider.h:56
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider
Edge Registration Decider Interface from which RangeScanner-based ERDs can inherit from.
Definition: CRangeScanEdgeRegistrationDecider.h:29
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::loadParams
void loadParams(const std::string &source_fname) override
Load the necessary for the decider/optimizer configuration parameters.
Definition: CRangeScanEdgeRegistrationDecider_impl.h:14
mrpt::graphslam::deciders
Definition: CEmptyERD.h:16
mrpt::graphslam::deciders::CRangeScanEdgeRegistrationDecider::CRangeScanEdgeRegistrationDecider
CRangeScanEdgeRegistrationDecider()=default
mrpt::graphslam::deciders::CRangeScanOps
Class for keeping together all the RangeScanner-related functions.
Definition: CRangeScanOps.h:71
CObservation2DRangeScan.h



Page generated by Doxygen 1.8.17 for MRPT 2.0.3 at Fri May 29 13:06:46 UTC 2020