Main MRPT website > C++ reference for MRPT 1.9.9
metric_map_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 #pragma once
10 
14 #include <mrpt/obs/obs_frwds.h>
15 
16 namespace mrpt
17 {
18 namespace maps
19 {
20 /** Parameters for the determination of matchings between point clouds, etc. \sa
21  * CMetricMap::determineMatching2D, CMetricMap::determineMatching3D */
23 {
24  /** Maximum linear distance between two points to be paired (meters) */
26  /** Allowed "angular error" (in radians): this permits larger pairing
27  * threshold distances to more distant points. */
29  /** If set to true (default), only the closest correspondence will be
30  * returned. If false all are returned. */
32  /** Additional consistency filter: "onlyKeepTheClosest" allows one
33  * correspondence for each "local map" point, but many of them may have as
34  * corresponding pair the same "global point", which this flag avoids. */
36  /** (Default=1) Only consider 1 out of this number of points from the
37  * "other" map. */
39  /** Index of the first point in the "other" map to start checking for
40  * correspondences (Default=0) */
42  /** The point used to calculate angular distances: e.g. the coordinates of
43  * the sensor for a 2D laser scanner. */
45 
46  /** Ctor: default values */
48  : maxDistForCorrespondence(0.50f),
50  onlyKeepTheClosest(true),
51  onlyUniqueRobust(false),
54  angularDistPivotPoint(0, 0, 0)
55  {
56  }
57 };
58 
59 /** Additional results from the determination of matchings between point clouds,
60  * etc., apart from the pairings themselves \sa CMetricMap::determineMatching2D,
61  * CMetricMap::determineMatching3D */
63 {
64  /** The ratio [0,1] of points in otherMap with at least one correspondence.
65  */
67  /** The sum of all matched points squared distances.If undesired, set to
68  * nullptr, as default. */
69  float sumSqrDist;
70 
72 };
73 
74 /** Parameters for CMetricMap::compute3DMatchingRatio() */
76 {
77  /** (Default: 0.10f) The minimum distance between 2 non-probabilistic map
78  * elements for counting them as a correspondence. */
80  /** (Default: 2.0f) The minimum Mahalanobis distance between 2 probabilistic
81  * map elements for counting them as a correspondence. */
83 
85 };
86 
87 /** Common params to all maps derived from mrpt::maps::CMetricMap */
90 {
92  public:
93  /** (Default=true) If false, calling CMetricMap::getAs3DObject() will have
94  * no effects */
96  /** (Default=true) Enable computing observation likelihoods with this map */
98  /** (Default=true) Enable inserting observations in this map */
100 
102  void loadFromConfigFile(
104  const std::string& sectionNamePrefix) override; // See base docs
105  void dumpToTextStream(
106  mrpt::utils::CStream& out) const override; // See base docs
107 };
108 
109 } // End of namespace
110 } // End of namespace
mrpt::math::TPoint3D angularDistPivotPoint
The point used to calculate angular distances: e.g.
float maxAngularDistForCorrespondence
Allowed "angular error" (in radians): this permits larger pairing threshold distances to more distant...
Parameters for CMetricMap::compute3DMatchingRatio()
void dumpToTextStream(mrpt::utils::CStream &out) const override
This method should clearly display all the contents of the structure in textual form, sending it to a CStream.
bool enableObservationInsertion
(Default=true) Enable inserting observations in this map
The virtual base class which provides a unified interface for all persistent objects in MRPT...
Definition: CSerializable.h:44
bool enableSaveAs3DObject
(Default=true) If false, calling CMetricMap::getAs3DObject() will have no effects ...
size_t decimation_other_map_points
(Default=1) Only consider 1 out of this number of points from the "other" map.
float sumSqrDist
The sum of all matched points squared distances.If undesired, set to nullptr, as default.
bool enableObservationLikelihood
(Default=true) Enable computing observation likelihoods with this map
This class allows loading and storing values and vectors of different types from a configuration text...
float maxDistForCorr
(Default: 0.10f) The minimum distance between 2 non-probabilistic map elements for counting them as a...
This base class is used to provide a unified interface to files,memory buffers,..Please see the deriv...
Definition: CStream.h:41
Additional results from the determination of matchings between point clouds, etc., apart from the pairings themselves.
bool onlyUniqueRobust
Additional consistency filter: "onlyKeepTheClosest" allows one correspondence for each "local map" po...
float maxDistForCorrespondence
Maximum linear distance between two points to be paired (meters)
GLsizei const GLchar ** string
Definition: glext.h:4101
bool onlyKeepTheClosest
If set to true (default), only the closest correspondence will be returned.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
size_t offset_other_map_points
Index of the first point in the "other" map to start checking for correspondences (Default=0) ...
float correspondencesRatio
The ratio [0,1] of points in otherMap with at least one correspondence.
Common params to all maps derived from mrpt::maps::CMetricMap.
GLsizei GLsizei GLchar * source
Definition: glext.h:4082
float maxMahaDistForCorr
(Default: 2.0f) The minimum Mahalanobis distance between 2 probabilistic map elements for counting th...
void loadFromConfigFile(const mrpt::utils::CConfigFileBase &source, const std::string &sectionNamePrefix) override
This method load the options from a ".ini"-like file or memory-stored string list.
Lightweight 3D point.
Parameters for the determination of matchings between point clouds, etc.
TMatchingParams()
Ctor: default values.
This is a virtual base class for sets of options than can be loaded from and/or saved to configuratio...



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