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
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
Common params to all maps derived from mrpt::maps::CMetricMap
bool enableObservationInsertion
(Default=true) Enable inserting observations in this map
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.
void dumpToTextStream(mrpt::utils::CStream &out) const override
This method should clearly display all the contents of the structure in textual form,...
bool enableObservationLikelihood
(Default=true) Enable computing observation likelihoods with this map
bool enableSaveAs3DObject
(Default=true) If false, calling CMetricMap::getAs3DObject() will have no effects
This class allows loading and storing values and vectors of different types from a configuration text...
This is a virtual base class for sets of options than can be loaded from and/or saved to configuratio...
The virtual base class which provides a unified interface for all persistent objects in MRPT.
Definition: CSerializable.h:45
This base class is used to provide a unified interface to files,memory buffers,..Please see the deriv...
Definition: CStream.h:42
GLsizei const GLchar ** string
Definition: glext.h:4101
GLsizei GLsizei GLchar * source
Definition: glext.h:4082
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Additional results from the determination of matchings between point clouds, etc.,...
float correspondencesRatio
The ratio [0,1] of points in otherMap with at least one correspondence.
float sumSqrDist
The sum of all matched points squared distances.If undesired, set to nullptr, as default.
Parameters for the determination of matchings between point clouds, etc.
float maxDistForCorrespondence
Maximum linear distance between two points to be paired (meters)
size_t decimation_other_map_points
(Default=1) Only consider 1 out of this number of points from the "other" map.
bool onlyKeepTheClosest
If set to true (default), only the closest correspondence will be returned.
bool onlyUniqueRobust
Additional consistency filter: "onlyKeepTheClosest" allows one correspondence for each "local map" po...
size_t offset_other_map_points
Index of the first point in the "other" map to start checking for correspondences (Default=0)
float maxAngularDistForCorrespondence
Allowed "angular error" (in radians): this permits larger pairing threshold distances to more distant...
TMatchingParams()
Ctor: default values.
mrpt::math::TPoint3D angularDistPivotPoint
The point used to calculate angular distances: e.g.
Parameters for CMetricMap::compute3DMatchingRatio()
float maxMahaDistForCorr
(Default: 2.0f) The minimum Mahalanobis distance between 2 probabilistic map elements for counting th...
float maxDistForCorr
(Default: 0.10f) The minimum distance between 2 non-probabilistic map elements for counting them as a...
Lightweight 3D point.



Page generated by Doxygen 1.9.1 for MRPT 1.9.9 Git: 63ea9d1f1 Thu Nov 23 00:06:53 2017 +0100 at mar 26 may 2026 12:19:29 CEST