MRPT  2.0.3
CWirelessPowerGridMap2D.cpp
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 
10 #include "maps-precomp.h" // Precomp header
11 
12 #include <mrpt/core/round.h>
13 #include <mrpt/img/color_maps.h>
18 #include <mrpt/system/CTicTac.h>
19 #include <mrpt/system/os.h>
20 
21 using namespace mrpt;
22 using namespace mrpt::maps;
23 using namespace mrpt::obs;
24 using namespace mrpt::poses;
25 using namespace std;
26 
27 // =========== Begin of Map definition ============
29  "mrpt::maps::CWirelessPowerGridMap2D,wifiGrid",
31 
33 
35  const mrpt::config::CConfigFileBase& source,
36  const std::string& sectionNamePrefix)
37 {
38  // [<sectionNamePrefix>+"_creationOpts"]
39  const std::string sSectCreation =
40  sectionNamePrefix + string("_creationOpts");
41  MRPT_LOAD_CONFIG_VAR(min_x, double, source, sSectCreation);
42  MRPT_LOAD_CONFIG_VAR(max_x, double, source, sSectCreation);
43  MRPT_LOAD_CONFIG_VAR(min_y, double, source, sSectCreation);
44  MRPT_LOAD_CONFIG_VAR(max_y, double, source, sSectCreation);
45  MRPT_LOAD_CONFIG_VAR(resolution, double, source, sSectCreation);
47  sSectCreation, "mapType", mapType);
48 
49  insertionOpts.loadFromConfigFile(
50  source, sectionNamePrefix + string("_insertOpts"));
51 }
52 
54  std::ostream& out) const
55 {
56  out << mrpt::format(
57  "MAP TYPE = %s\n",
60  .c_str());
61  LOADABLEOPTS_DUMP_VAR(min_x, double);
62  LOADABLEOPTS_DUMP_VAR(max_x, double);
63  LOADABLEOPTS_DUMP_VAR(min_y, double);
64  LOADABLEOPTS_DUMP_VAR(max_y, double);
65  LOADABLEOPTS_DUMP_VAR(resolution, double);
66 
67  this->insertionOpts.dumpToTextStream(out);
68 }
69 
73 {
75  *dynamic_cast<const CWirelessPowerGridMap2D::TMapDefinition*>(&_def);
76  auto* obj = new CWirelessPowerGridMap2D(
77  def.mapType, def.min_x, def.max_x, def.min_y, def.max_y,
78  def.resolution);
79  obj->insertionOptions = def.insertionOpts;
80  return obj;
81 }
82 // =========== End of Map definition Block =========
83 
86 
87 /*---------------------------------------------------------------
88  Constructor
89  ---------------------------------------------------------------*/
91  TMapRepresentation mapType, double x_min, double x_max, double y_min,
92  double y_max, double resolution)
93  : CRandomFieldGridMap2D(mapType, x_min, x_max, y_min, y_max, resolution),
94  insertionOptions()
95 {
96  // Set the grid to initial values (and adjusts the KF covariance matrix!)
97  // Also, calling clear() is mandatory to end initialization of our base
98  // class (read note in CRandomFieldGridMap2D::CRandomFieldGridMap2D)
100 }
101 
102 CWirelessPowerGridMap2D::~CWirelessPowerGridMap2D() = default;
103 /*---------------------------------------------------------------
104  clear
105  ---------------------------------------------------------------*/
106 void CWirelessPowerGridMap2D::internal_clear()
107 {
108  // Just do the generic clear:
110 
111  // Anything else special for this derived class?
112  // ...
113 }
114 
115 /*---------------------------------------------------------------
116  insertObservation
117  ---------------------------------------------------------------*/
119  const CObservation& obs, const CPose3D* robotPose)
120 {
121  MRPT_START
122 
123  CPose2D robotPose2D;
124  CPose3D robotPose3D;
125 
126  if (robotPose)
127  {
128  robotPose2D = CPose2D(*robotPose);
129  robotPose3D = (*robotPose);
130  }
131  else
132  {
133  // Default values are (0,0,0)
134  }
135 
137  {
138  /********************************************************************
139  OBSERVATION TYPE: CObservationWirelessPower
140  ********************************************************************/
141  const auto& o = dynamic_cast<const CObservationWirelessPower&>(obs);
142  float sensorReading;
143 
144  // Compute the 3D sensor pose in world coordinates:
145  CPose2D sensorPose = CPose2D(robotPose3D + o.sensorPoseOnRobot);
146 
147  sensorReading = o.power;
148 
149  // Normalization:
150  sensorReading = (sensorReading - insertionOptions.R_min) /
152 
153  // Update the gross estimates of mean/vars for the whole reading history
154  // (see IROS2009 paper):
156  (sensorReading +
160  (square(sensorReading - m_average_normreadings_mean) +
164 
165  // Finally, do the actual map update with that value:
167  sensorReading,
168  mrpt::math::TPoint2D(sensorPose.x(), sensorPose.y()));
169 
170  return true; // Done!
171 
172  } // end if "CObservationWirelessPower"
173 
174  return false;
175 
176  MRPT_END
177 }
178 
179 /*---------------------------------------------------------------
180  computeObservationLikelihood
181  ---------------------------------------------------------------*/
183  [[maybe_unused]] const CObservation& obs,
184  [[maybe_unused]] const CPose3D& takenFrom)
185 {
186  THROW_EXCEPTION("Not implemented yet!");
187 }
188 
189 uint8_t CWirelessPowerGridMap2D::serializeGetVersion() const { return 5; }
192 {
194 
195  // To ensure compatibility: The size of each cell:
196  auto n = static_cast<uint32_t>(sizeof(TRandomFieldCell));
197  out << n;
198 
199  // Save the map contents:
200  n = static_cast<uint32_t>(m_map.size());
201  out << n;
202 
203 // Save the "m_map": This requires special handling for big endian systems:
204 #if MRPT_IS_BIG_ENDIAN
205  for (uint32_t i = 0; i < n; i++)
206  {
207  out << m_map[i].kf_mean() << m_map[i].dm_mean()
208  << m_map[i].dmv_var_mean;
209  }
210 #else
211  // Little endian: just write all at once:
212  out.WriteBuffer(
213  &m_map[0],
214  sizeof(m_map[0]) * m_map.size()); // TODO: Do this endianness safe!!
215 #endif
216 
217  // Version 1: Save the insertion options:
218  out << uint8_t(m_mapType) << m_cov << m_stackedCov;
219 
226 
227  // New in v3:
229  << uint64_t(m_average_normreadings_count);
230 
231  out << genericMapParams; // v4
232 }
233 
234 // Aux struct used below (must be at global scope for STL):
236 {
237  float mean, std;
238  float w, wr;
239 };
240 
242  mrpt::serialization::CArchive& in, uint8_t version)
243 {
244  switch (version)
245  {
246  case 0:
247  case 1:
248  case 2:
249  case 3:
250  case 4:
251  case 5:
252  {
253  dyngridcommon_readFromStream(in, version < 5);
254 
255  // To ensure compatibility: The size of each cell:
256  uint32_t n;
257  in >> n;
258 
259  if (version < 2)
260  { // Converter from old versions <=1
261  ASSERT_(
262  n == static_cast<uint32_t>(sizeof(TOldCellTypeInVersion1)));
263  // Load the map contents in an aux struct:
264  in >> n;
265  vector<TOldCellTypeInVersion1> old_map(n);
266  in.ReadBuffer(&old_map[0], sizeof(old_map[0]) * old_map.size());
267 
268  // Convert to newer format:
269  m_map.resize(n);
270  for (size_t k = 0; k < n; k++)
271  {
272  m_map[k].kf_mean() =
273  (old_map[k].w != 0) ? old_map[k].wr : old_map[k].mean;
274  m_map[k].kf_std() =
275  (old_map[k].w != 0) ? old_map[k].w : old_map[k].std;
276  }
277  }
278  else
279  {
281  n, static_cast<uint32_t>(sizeof(TRandomFieldCell)));
282  // Load the map contents:
283  in >> n;
284  m_map.resize(n);
285 
286 // Read the note in writeToStream()
287 #if MRPT_IS_BIG_ENDIAN
288  for (uint32_t i = 0; i < n; i++)
289  in >> m_map[i].kf_mean() >> m_map[i].dm_mean() >>
290  m_map[i].dmv_var_mean;
291 #else
292  // Little endian: just read all at once:
293  in.ReadBuffer(&m_map[0], sizeof(m_map[0]) * m_map.size());
294 #endif
295  }
296 
297  // Version 1: Insertion options:
298  if (version >= 1)
299  {
300  uint8_t i;
301  in >> i;
303 
304  in >> m_cov >> m_stackedCov;
305 
313  }
314 
315  if (version >= 3)
316  {
317  uint64_t N;
321  }
322 
323  if (version >= 4) in >> genericMapParams;
324 
326  }
327  break;
328  default:
330  };
331 }
332 
335  std::ostream& out) const
336 {
337  out << "\n----------- [CWirelessPowerGridMap2D::TInsertionOptions] "
338  "------------ \n\n";
340  out); // Common params to all random fields maps:
341 
342  out << "\n";
343 }
344 
345 /*---------------------------------------------------------------
346  loadFromConfigFile
347  ---------------------------------------------------------------*/
349  const mrpt::config::CConfigFileBase& iniFile, const std::string& section)
350 {
351  // Common data fields for all random fields maps:
352  internal_loadFromConfigFile_common(iniFile, section);
353 }
354 
355 /*---------------------------------------------------------------
356  getAs3DObject
357 ---------------------------------------------------------------*/
359  mrpt::opengl::CSetOfObjects::Ptr& outObj) const
360 {
361  MRPT_START
364  MRPT_END
365 }
os.h
mrpt::maps::CRandomFieldGridMap2D::getAs3DObject
void getAs3DObject(mrpt::opengl::CSetOfObjects::Ptr &outObj) const override
Returns a 3D object representing the map (mean)
Definition: CRandomFieldGridMap2D.cpp:1585
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::mapType
mrpt::maps::CWirelessPowerGridMap2D::TMapRepresentation mapType
The kind of map representation (see CWirelessPowerGridMap2D::CWirelessPowerGridMap2D)
Definition: CWirelessPowerGridMap2D.h:87
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::dumpToTextStream_map_specific
void dumpToTextStream_map_specific(std::ostream &out) const override
Definition: CWirelessPowerGridMap2D.cpp:53
mrpt::maps::CWirelessPowerGridMap2D::internal_CreateFromMapDefinition
static mrpt::maps::CMetricMap * internal_CreateFromMapDefinition(const mrpt::maps::TMetricMapInitializer &def)
Definition: CWirelessPowerGridMap2D.cpp:71
mrpt::maps::CWirelessPowerGridMap2D::insertionOptions
mrpt::maps::CWirelessPowerGridMap2D::TInsertionOptions insertionOptions
mrpt::maps::CRandomFieldGridMap2D::m_mapType
TMapRepresentation m_mapType
The map representation type of this map, as passed in the constructor.
Definition: CRandomFieldGridMap2D.h:500
mrpt::obs::CObservationWirelessPower
This represents a measurement of the wireless strength perceived by the robot.
Definition: CObservationWirelessPower.h:26
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::loadFromConfigFile_map_specific
void loadFromConfigFile_map_specific(const mrpt::config::CConfigFileBase &source, const std::string &sectionNamePrefix) override
Load all map-specific params.
Definition: CWirelessPowerGridMap2D.cpp:34
mrpt::maps::CWirelessPowerGridMap2D::TInsertionOptions::dumpToTextStream
void dumpToTextStream(std::ostream &out) const override
This method should clearly display all the contents of the structure in textual form,...
Definition: CWirelessPowerGridMap2D.cpp:334
mrpt::containers::clear
void clear()
Clear the contents of this container.
Definition: ts_hash_map.h:183
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::TMapDefinition
TMapDefinition()
mrpt::opengl::CSetOfObjects::Ptr
std::shared_ptr< mrpt::opengl ::CSetOfObjects > Ptr
Definition: CSetOfObjects.h:28
mrpt::maps::CWirelessPowerGridMap2D::TInsertionOptions::TInsertionOptions
TInsertionOptions()
Default values loader.
ASSERT_EQUAL_
#define ASSERT_EQUAL_(__A, __B)
Assert comparing two values, reporting their actual values upon failure.
Definition: exceptions.h:137
mrpt::maps::CRandomFieldGridMap2D::m_stackedCov
mrpt::math::CMatrixD m_stackedCov
The compressed band diagonal matrix for the KF2 implementation.
Definition: CRandomFieldGridMap2D.h:512
mrpt::maps::CWirelessPowerGridMap2D::CWirelessPowerGridMap2D
CWirelessPowerGridMap2D(TMapRepresentation mapType=mrKernelDM, double x_min=-2, double x_max=2, double y_min=-2, double y_max=2, double resolution=0.1)
Constructor.
MRPT_LOAD_CONFIG_VAR
#define MRPT_LOAD_CONFIG_VAR( variableName, variableType, configFileObject, sectionNameStr)
An useful macro for loading variables stored in a INI-like file under a key with the same name that t...
Definition: config/CConfigFileBase.h:306
mrpt::maps::TMapGenericParams::enableSaveAs3DObject
bool enableSaveAs3DObject
(Default=true) If false, calling CMetricMap::getAs3DObject() will have no effects
Definition: metric_map_types.h:84
CSetOfObjects.h
mrpt::math::TPoint2D_< double >
mrpt::poses::CPoseOrPoint::x
double x() const
Common members of all points & poses classes.
Definition: CPoseOrPoint.h:143
CWirelessPowerGridMap2D.h
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::KF_observationModelNoise
float KF_observationModelNoise
The sensor model noise (in normalized concentration units).
Definition: CRandomFieldGridMap2D.h:278
IS_CLASS
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class.
Definition: CObject.h:146
mrpt::math::mean
double mean(const CONTAINER &v)
Computes the mean value of a vector.
Definition: ops_containers.h:244
color_maps.h
mrpt::maps::CRandomFieldGridMap2D::m_average_normreadings_var
double m_average_normreadings_var
Definition: CRandomFieldGridMap2D.h:520
MAP_DEFINITION_REGISTER
#define MAP_DEFINITION_REGISTER(_CLASSNAME_STRINGS, _CLASSNAME_WITH_NS)
Registers one map class into TMetricMapInitializer factory.
Definition: TMetricMapTypesRegistry.h:91
mrpt::maps::CWirelessPowerGridMap2D::internal_insertObservation
bool internal_insertObservation(const mrpt::obs::CObservation &obs, const mrpt::poses::CPose3D *robotPose=nullptr) override
Internal method called by insertObservation()
Definition: CWirelessPowerGridMap2D.cpp:118
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::R_min
float R_min
Limits for normalization of sensor readings.
Definition: CRandomFieldGridMap2D.h:262
CObservationWirelessPower.h
mrpt::maps::CRandomFieldGridMap2D::m_hasToRecoverMeanAndCov
bool m_hasToRecoverMeanAndCov
Only for the KF2 implementation.
Definition: CRandomFieldGridMap2D.h:514
out
mrpt::vision::TStereoCalibResults out
Definition: chessboard_stereo_camera_calib_unittest.cpp:25
mrpt::maps::CRandomFieldGridMap2D::insertIndividualReading
void insertIndividualReading(const double sensorReading, const mrpt::math::TPoint2D &point, const bool update_map=true, const bool time_invariant=true, const double reading_stddev=.0)
Direct update of the map with a reading in a given position of the map, using the appropriate method ...
Definition: CRandomFieldGridMap2D.cpp:2473
mrpt
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Definition: BaseAppDataSource.h:15
mrpt::serialization::CArchive::ReadBuffer
size_t ReadBuffer(void *Buffer, size_t Count)
Reads a block of bytes from the stream into Buffer.
Definition: CArchive.cpp:25
mrpt::maps::TMetricMapInitializer
Virtual base for specifying the kind and parameters of one map (normally, to be inserted into mrpt::m...
Definition: TMetricMapInitializer.h:32
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::insertionOpts
mrpt::maps::CWirelessPowerGridMap2D::TInsertionOptions insertionOpts
Definition: CWirelessPowerGridMap2D.h:89
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::max_y
double max_y
Definition: CWirelessPowerGridMap2D.h:84
mrpt::maps::CMetricMap::genericMapParams
TMapGenericParams genericMapParams
Common params to all maps.
Definition: CMetricMap.h:274
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::KF_covSigma
float KF_covSigma
The "sigma" for the initial covariance value between cells (in meters).
Definition: CRandomFieldGridMap2D.h:272
THROW_EXCEPTION
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
ASSERT_
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
mrpt::maps::CWirelessPowerGridMap2D::serializeGetVersion
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
Definition: CWirelessPowerGridMap2D.cpp:189
mrpt::poses
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
Definition: CHierarchicalMapMHPartition.h:22
mrpt::containers::CDynamicGrid< TRandomFieldCell >::m_map
std::vector< TRandomFieldCell > m_map
The cells
Definition: CDynamicGrid.h:42
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::KF_initialCellStd
float KF_initialCellStd
The initial standard deviation of each cell's concentration (will be stored both at each cell's struc...
Definition: CRandomFieldGridMap2D.h:276
mrpt::obs
This namespace contains representation of robot actions and observations.
Definition: CParticleFilter.h:17
mrpt::serialization::CArchive
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:54
mrpt::maps::CWirelessPowerGridMap2D
CWirelessPowerGridMap2D represents a PDF of wifi concentrations over a 2D area.
Definition: CWirelessPowerGridMap2D.h:32
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::sigma
float sigma
The sigma of the "Parzen"-kernel Gaussian.
Definition: CRandomFieldGridMap2D.h:258
mrpt::maps::CRandomFieldGridMap2D::internal_clear
void internal_clear() override
Erase all the contents of the map.
Definition: CRandomFieldGridMap2D.cpp:82
mrpt::maps::CMetricMap
Declares a virtual base class for all metric maps storage classes.
Definition: CMetricMap.h:52
mrpt::maps::CWirelessPowerGridMap2D::serializeFrom
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
Definition: CWirelessPowerGridMap2D.cpp:241
MRPT_START
#define MRPT_START
Definition: exceptions.h:241
mrpt::config::CConfigFileBase
This class allows loading and storing values and vectors of different types from a configuration text...
Definition: config/CConfigFileBase.h:44
mrpt::poses::CPose2D
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
Definition: CPose2D.h:39
mrpt::poses::CPose3D
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
mrpt::maps::CRandomFieldGridMap2D::TMapRepresentation
TMapRepresentation
The type of map representation to be used, see CRandomFieldGridMap2D for a discussion.
Definition: CRandomFieldGridMap2D.h:175
iniFile
string iniFile(myDataDir+string("benchmark-options.ini"))
mrpt::poses::CPoseOrPoint::y
double y() const
Definition: CPoseOrPoint.h:147
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::max_x
double max_x
Definition: CWirelessPowerGridMap2D.h:84
mrpt::typemeta::TEnumType
A helper class that can convert an enum value into its textual representation, and viceversa.
Definition: config/CConfigFileBase.h:24
round.h
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::KF_W_size
uint16_t KF_W_size
[mrKalmanApproximate] The size of the window of neighbor cells.
Definition: CRandomFieldGridMap2D.h:282
mrpt::maps::CWirelessPowerGridMap2D::getAs3DObject
void getAs3DObject(mrpt::opengl::CSetOfObjects::Ptr &outObj) const override
Returns a 3D object representing the map
Definition: CWirelessPowerGridMap2D.cpp:358
mrpt::maps::CRandomFieldGridMap2D::m_average_normreadings_mean
double m_average_normreadings_mean
Definition: CRandomFieldGridMap2D.h:520
mrpt::square
return_t square(const num_t x)
Inline function for the square of a number.
Definition: core/include/mrpt/core/bits_math.h:23
LOADABLEOPTS_DUMP_VAR
#define LOADABLEOPTS_DUMP_VAR(variableName, variableType)
Macro for dumping a variable to a stream, within the method "dumpToTextStream(out)" (Variable types a...
Definition: config/CLoadableOptions.h:101
mrpt::config::CConfigFileBase::read_enum
ENUMTYPE read_enum(const std::string &section, const std::string &name, const ENUMTYPE &defaultValue, bool failIfNotFound=false) const
Reads an "enum" value, where the value in the config file can be either a numerical value or the symb...
Definition: config/CConfigFileBase.h:269
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::R_max
float R_max
Definition: CRandomFieldGridMap2D.h:262
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::resolution
double resolution
Definition: CWirelessPowerGridMap2D.h:84
mrpt::containers::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream
void dyngridcommon_writeToStream(STREAM &out) const
Definition: CDynamicGrid.h:334
mrpt::containers::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream
void dyngridcommon_readFromStream(STREAM &in, bool cast_from_float=false)
Definition: CDynamicGrid.h:342
mrpt::maps::CWirelessPowerGridMap2D::internal_computeObservationLikelihood
double internal_computeObservationLikelihood(const mrpt::obs::CObservation &obs, const mrpt::poses::CPose3D &takenFrom) override
Internal method called by computeObservationLikelihood()
Definition: CWirelessPowerGridMap2D.cpp:182
CTicTac.h
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition
Definition: CWirelessPowerGridMap2D.h:82
maps-precomp.h
mrpt::maps::CRandomFieldGridMap2D
CRandomFieldGridMap2D represents a 2D grid map where each cell is associated one real-valued property...
Definition: CRandomFieldGridMap2D.h:152
mrpt::maps::CWirelessPowerGridMap2D::serializeTo
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
Definition: CWirelessPowerGridMap2D.cpp:190
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::internal_dumpToTextStream_common
void internal_dumpToTextStream_common(std::ostream &out) const
See utils::CLoadableOptions.
Definition: CRandomFieldGridMap2D.cpp:688
MRPT_END
#define MRPT_END
Definition: exceptions.h:245
mrpt::obs::CObservation
Declares a class that represents any robot's observation.
Definition: CObservation.h:43
mrpt::maps::TRandomFieldCell
The contents of each cell in a CRandomFieldGridMap2D map.
Definition: CRandomFieldGridMap2D.h:36
mrpt::maps::CWirelessPowerGridMap2D::TInsertionOptions::loadFromConfigFile
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string &section) override
This method load the options from a ".ini"-like file or memory-stored string list.
Definition: CWirelessPowerGridMap2D.cpp:348
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::min_y
double min_y
Definition: CWirelessPowerGridMap2D.h:84
mrpt::maps
Definition: CBeacon.h:21
TOldCellTypeInVersion1
Definition: CGasConcentrationGridMap2D.cpp:336
mrpt::maps::CRandomFieldGridMap2D::m_cov
mrpt::math::CMatrixD m_cov
The whole covariance matrix, used for the Kalman Filter map representation.
Definition: CRandomFieldGridMap2D.h:504
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::cutoffRadius
float cutoffRadius
The cutoff radius for updating cells.
Definition: CRandomFieldGridMap2D.h:260
CArchive.h
MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:97
mrpt::maps::CWirelessPowerGridMap2D::TMapDefinition::min_x
double min_x
See CWirelessPowerGridMap2D::CWirelessPowerGridMap2D.
Definition: CWirelessPowerGridMap2D.h:84
mrpt::maps::CRandomFieldGridMap2D::m_average_normreadings_count
size_t m_average_normreadings_count
Definition: CRandomFieldGridMap2D.h:521
mrpt::format
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
IMPLEMENTS_SERIALIZABLE
IMPLEMENTS_SERIALIZABLE(CWirelessPowerGridMap2D, CRandomFieldGridMap2D, mrpt::maps) CWirelessPowerGridMap2D
Definition: CWirelessPowerGridMap2D.cpp:84
mrpt::maps::CRandomFieldGridMap2D::TInsertionOptionsCommon::KF_defaultCellMeanValue
float KF_defaultCellMeanValue
The default value for the mean of cells' concentration.
Definition: CRandomFieldGridMap2D.h:280



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