MRPT  2.0.3
RawlogGrabberApp.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 "apps-precomp.h" // Precompiled headers
11 
14 #include <mrpt/core/lock_helper.h>
15 #include <mrpt/core/round.h>
17 #include <mrpt/img/CImage.h>
25 #include <mrpt/obs/CSensoryFrame.h>
27 #include <mrpt/system/CRateTimer.h>
28 #include <mrpt/system/filesystem.h>
29 #include <mrpt/system/os.h>
30 #include <thread>
31 
32 using namespace mrpt::apps;
33 
35  : mrpt::system::COutputLogger("RawlogGrabberApp")
36 {
37 }
38 
39 void RawlogGrabberApp::initialize(int argc, const char** argv)
40 {
42 
43  if ((getenv("MRPT_HWDRIVERS_VERBOSE") != nullptr) &&
44  atoi(getenv("MRPT_HWDRIVERS_VERBOSE")) != 0)
45  {
47  }
48 
49  MRPT_LOG_INFO(" rawlog-grabber - Part of the MRPT");
51  " MRPT C++ Library: %s - Sources timestamp: %s\n",
54 
55  // Process arguments:
56  if (argc < 2)
57  THROW_EXCEPTION_FMT("Usage: %s <config_file.ini>\n\n", argv[0]);
58 
59  {
60  std::string INI_FILENAME(argv[1]);
61  ASSERT_FILE_EXISTS_(INI_FILENAME);
63  }
64 
65  MRPT_END
66 }
67 
69 {
70  using namespace mrpt;
71  using namespace mrpt::system;
72  using namespace mrpt::hwdrivers;
73  using namespace mrpt::config;
74  using namespace mrpt::serialization;
75  using namespace mrpt::img;
76  using namespace mrpt::obs;
77  using namespace mrpt::poses;
78  using namespace std;
79 
80  const std::string GLOBAL_SECT = "global";
81 
82  // ------------------------------------------
83  // Load config from file:
84  // ------------------------------------------
85  string rawlog_prefix = "dataset";
86  int time_between_launches = 300;
87  bool use_sensoryframes = false;
88  int GRABBER_PERIOD_MS = 1000;
89  int rawlog_GZ_compress_level = 1; // 0: No compress, 1-9: compress level
90 
91  MRPT_LOAD_CONFIG_VAR(rawlog_prefix, string, params, GLOBAL_SECT);
92  MRPT_LOAD_CONFIG_VAR(time_between_launches, int, params, GLOBAL_SECT);
93  MRPT_LOAD_CONFIG_VAR(SF_max_time_span, float, params, GLOBAL_SECT);
94  MRPT_LOAD_CONFIG_VAR(use_sensoryframes, bool, params, GLOBAL_SECT);
95  MRPT_LOAD_CONFIG_VAR(GRABBER_PERIOD_MS, int, params, GLOBAL_SECT);
96 
97  MRPT_LOAD_CONFIG_VAR(rawlog_GZ_compress_level, int, params, GLOBAL_SECT);
98 
99  // Build full rawlog file name:
100  string rawlog_postfix = "_";
101 
102  // rawlog_postfix += dateTimeToString( now() );
104  mrpt::system::timestampToParts(now(), parts, true);
105  rawlog_postfix += format(
106  "%04u-%02u-%02u_%02uh%02um%02us", (unsigned int)parts.year,
107  (unsigned int)parts.month, (unsigned int)parts.day,
108  (unsigned int)parts.hour, (unsigned int)parts.minute,
109  (unsigned int)parts.second);
110 
111  rawlog_postfix = mrpt::system::fileNameStripInvalidChars(rawlog_postfix);
112 
113  // Only set this if we want externally stored images:
115  rawlog_prefix +
116  fileNameStripInvalidChars(rawlog_postfix + string("_Images"));
117 
118  // Also, set the path in CImage to enable online visualization in a GUI
119  // window:
120  CImage::setImagesPathBase(m_rawlog_ext_imgs_dir);
121 
122  rawlog_postfix += string(".rawlog");
123  rawlog_postfix = fileNameStripInvalidChars(rawlog_postfix);
124 
125  rawlog_filename = rawlog_prefix + rawlog_postfix;
126 
127  MRPT_LOG_INFO_STREAM("Output rawlog filename: " << rawlog_filename);
128  MRPT_LOG_INFO_STREAM("External image storage: " << m_rawlog_ext_imgs_dir);
129 
130  // ----------------------------------------------
131  // Launch threads:
132  // ----------------------------------------------
133  std::vector<std::string> sections;
134  params.getAllSections(sections);
135 
136  vector<std::thread> lstThreads;
137 
138  for (auto& section : sections)
139  {
140  if (section == GLOBAL_SECT || section.empty() ||
141  params.read_bool(section, "rawlog-grabber-ignore", false, false))
142  continue; // This is not a sensor:
143 
144  lstThreads.emplace_back(&RawlogGrabberApp::SensorThread, this, section);
145 
146  std::this_thread::sleep_for(
147  std::chrono::milliseconds(time_between_launches));
148  }
149 
150  // ----------------------------------------------
151  // Run:
152  // ----------------------------------------------
154  auto out_arch_obj = archiveFrom(out_file);
155  m_out_arch_ptr = &out_arch_obj;
156 
157  out_file.open(rawlog_filename, rawlog_GZ_compress_level);
158 
159  CGenericSensor::TListObservations copy_of_m_global_list_obs;
160 
161  MRPT_LOG_INFO_STREAM("Press any key to exit program");
162 
163  mrpt::system::CTicTac run_timer;
164  run_timer.Tic();
165 
166  auto lambdaProcessPending = [&]() {
168  copy_of_m_global_list_obs.clear();
169 
170  if (!m_global_list_obs.empty())
171  {
172  auto itEnd = m_global_list_obs.begin();
173  std::advance(itEnd, m_global_list_obs.size() / 2);
174  copy_of_m_global_list_obs.insert(m_global_list_obs.begin(), itEnd);
175  m_global_list_obs.erase(m_global_list_obs.begin(), itEnd);
176  }
177 
178  if (use_sensoryframes)
179  process_observations_for_sf(copy_of_m_global_list_obs);
180  else
181  process_observations_for_nonsf(copy_of_m_global_list_obs);
182  };
183 
184  while (!os::kbhit() && !allThreadsMustExit)
185  {
186  // Check "run for X seconds" flag:
187  if (run_for_seconds > 0 && run_timer.Tac() > run_for_seconds) break;
188 
189  // See if we have observations and process them:
190  lambdaProcessPending();
191 
192  std::this_thread::sleep_for(
193  std::chrono::milliseconds(GRABBER_PERIOD_MS));
194  }
195 
196  if (allThreadsMustExit)
197  {
199  "[main thread] Ended due to other thread signal to exit "
200  "application.");
201  }
202 
203  // Final check of pending objects:
204  lambdaProcessPending();
205 
206  // Flush file to disk:
207  out_file.close();
208 
209  // Wait all threads:
210  // ----------------------------
211  allThreadsMustExit = true;
212  std::this_thread::sleep_for(300ms);
213 
214  MRPT_LOG_INFO("Waiting for all threads to close...");
215 
216  for (auto& lstThread : lstThreads) lstThread.join();
217 }
218 
220 {
221  try
222  {
223  m_isRunning = true;
224  runImpl();
225  m_isRunning = false;
226  }
227  catch (const std::exception& e)
228  {
229  m_isRunning = false;
230  throw;
231  }
232 }
233 
236 {
237  // Show GPS mode:
239 
240  static auto last_t = mrpt::Clock::now();
241  const auto t_now = mrpt::Clock::now();
242  if (mrpt::system::timeDifference(last_t, t_now) < 1.0) return;
243  last_t = t_now;
244 
245  if (auto gps = std::dynamic_pointer_cast<mrpt::obs::CObservationGPS>(o);
246  gps)
247  {
248  dump_GPS_mode_info(*gps);
249  }
250  else if (auto imu =
251  std::dynamic_pointer_cast<mrpt::obs::CObservationIMU>(o);
252  imu)
253  {
254  dump_IMU_info(*imu);
255  }
256 }
257 
259  const mrpt::obs::CSensoryFrame& sf) const
260 {
262 
263  // Show GPS mode:
265  std::size_t idx = 0;
266  do
267  {
269  if (gps) dump_GPS_mode_info(*gps);
270  } while (gps);
271 
272  // Show IMU angles:
274  if (imu) dump_IMU_info(*imu);
275 }
276 
278  const mrpt::obs::CObservationGPS& o) const
279 {
280  if (o.has_GGA_datum())
281  {
283 
284  const auto fq = static_cast<int>(
285  o.getMsgByClass<Message_NMEA_GGA>().fields.fix_quality);
287  " GPS mode: " << fq << " label: " << o.sensorLabel);
288  }
289  {
290  std::stringstream ss;
291  o.getDescriptionAsText(ss);
292  MRPT_LOG_DEBUG_STREAM(ss.str());
293  }
294 }
295 
297 {
298  // Show IMU angles:
300  " IMU angles (degrees): "
301  "(yaw,pitch,roll)=(%.06f, %.06f, %.06f)",
305 }
306 
307 // ------------------------------------------------------
308 // SensorThread
309 // ------------------------------------------------------
310 void RawlogGrabberApp::SensorThread(std::string sensor_label)
311 {
312  try
313  {
314  std::string driver_name =
315  params.read_string(sensor_label, "driver", "", true);
316 
317  auto sensor =
319 
320  if (!sensor)
321  throw std::runtime_error(
322  std::string("Class name not recognized: ") + driver_name);
323 
324  // Load common & sensor specific parameters:
325  sensor->loadConfig(params, sensor_label);
326 
328  "[thread_" << sensor_label << "] Starting at "
329  << sensor->getProcessRate() << " Hz");
330 
331  ASSERT_ABOVE_(sensor->getProcessRate(), 0);
332 
333  // For imaging sensors, set external storage directory:
334  sensor->setPathForExternalImages(m_rawlog_ext_imgs_dir);
335 
336  // Init device:
337  sensor->initialize();
338 
340  rate.setRate(sensor->getProcessRate());
341 
342  while (!allThreadsMustExit)
343  {
344  // Process
345  sensor->doProcess();
346 
347  // Get new observations
349  sensor->getObservations(lstObjs);
350 
351  {
352  std::lock_guard<std::mutex> lock(cs_m_global_list_obs);
353  m_global_list_obs.insert(lstObjs.begin(), lstObjs.end());
354  }
355 
356  lstObjs.clear();
357 
358  // wait for the process period:
359  rate.sleep();
360  }
361 
362  sensor.reset();
363 
364  MRPT_LOG_INFO_FMT("[thread_%s] Closing...", sensor_label.c_str());
365  }
366  catch (const std::exception& e)
367  {
369  {
371  "Exception in SensorThread:\n"
372  << mrpt::exception_to_str(e));
373  }
374  allThreadsMustExit = true;
375  }
376  catch (...)
377  {
379  {
380  MRPT_LOG_ERROR("Untyped exception in SensorThread.");
381  }
382  allThreadsMustExit = true;
383  }
384 }
385 
387  const RawlogGrabberApp::TListObservations& list_obs)
388 {
389  using namespace mrpt::obs;
390 
391  // -----------------------
392  // USE SENSORY-FRAMES
393  // -----------------------
394  for (auto it = list_obs.begin(); it != list_obs.end(); ++it)
395  {
396  // If we have an action, save the SF and start a new one:
397  if (IS_DERIVED(*it->second, CAction))
398  {
399  CAction::Ptr act = std::dynamic_pointer_cast<CAction>(it->second);
400 
401  (*m_out_arch_ptr) << m_curSF;
403  "Saved SF with " << m_curSF.size() << " objects.");
404  m_curSF.clear();
405 
406  CActionCollection acts;
407  acts.insert(*act);
408  act.reset();
409 
410  (*m_out_arch_ptr) << acts;
411  }
412  else if (IS_CLASS(*it->second, CObservationOdometry))
413  {
415  std::dynamic_pointer_cast<CObservationOdometry>(it->second);
416 
417  auto act = CActionRobotMovement2D::Create();
418  act->timestamp = odom->timestamp;
419 
420  // Compute the increment since the last reading:
422  static CObservationOdometry last_odo;
423  static bool last_odo_first = true;
424 
425  mrpt::poses::CPose2D odo_incr;
426  int64_t lticks_incr, rticks_incr;
427 
428  if (last_odo_first)
429  {
430  last_odo_first = false;
431  odo_incr = mrpt::poses::CPose2D(0, 0, 0);
432  lticks_incr = rticks_incr = 0;
433  }
434  else
435  {
436  odo_incr = odom->odometry - last_odo.odometry;
437  lticks_incr =
438  odom->encoderLeftTicks - last_odo.encoderLeftTicks;
439  rticks_incr =
440  odom->encoderRightTicks - last_odo.encoderRightTicks;
441 
442  last_odo = *odom;
443  }
444 
445  // Save as action & dump to file:
446  act->computeFromOdometry(odo_incr, odomOpts);
447 
448  act->hasEncodersInfo = true;
449  act->encoderLeftTicks = lticks_incr;
450  act->encoderRightTicks = rticks_incr;
451 
452  act->hasVelocities = true;
453  act->velocityLocal = odom->velocityLocal;
454 
455  (*m_out_arch_ptr) << m_curSF;
457 
459  "Saved SF with " << m_curSF.size() << " objects.");
460  m_curSF.clear();
461 
462  CActionCollection acts;
463  acts.insert(*act);
464  act.reset();
465 
466  (*m_out_arch_ptr) << acts;
468  }
469  else if (IS_DERIVED(*it->second, CObservation))
470  {
471  CObservation::Ptr obs =
472  std::dynamic_pointer_cast<CObservation>(it->second);
473 
474  // First, check if inserting this OBS into the SF would
475  // overflow "SF_max_time_span":
476  if (m_curSF.size() != 0 &&
478  m_curSF.getObservationByIndex(0)->timestamp,
479  obs->timestamp) > SF_max_time_span)
480  {
482 
483  // Save and start a new one:
484  (*m_out_arch_ptr) << m_curSF;
486 
488  "Saved SF with " << m_curSF.size() << " objects.");
489  m_curSF.clear();
490  }
491 
492  // Now, insert the observation in the SF:
493  m_curSF.insert(obs);
494  }
495  else
497  "*** ERROR *** Class is not an action or an "
498  "observation");
499  }
500 }
501 
503  const RawlogGrabberApp::TListObservations& list_obs)
504 {
505  // ---------------------------
506  // DO NOT USE SENSORY-FRAMES
507  // ---------------------------
508  for (auto& ob : list_obs)
509  {
510  auto& obj_ptr = ob.second;
511  (*m_out_arch_ptr) << *obj_ptr;
513 
514  dump_verbose_info(obj_ptr);
515  }
516 
517  if (!list_obs.empty())
518  {
519  MRPT_LOG_INFO_STREAM("Saved " << list_obs.size() << " objects.");
520  }
521 }
void clear()
Clear all current observations.
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
void timestampToParts(TTimeStamp t, TTimeParts &p, bool localTime=false)
Gets the individual parts of a date/time (days, hours, minutes, seconds) - UTC time or local time...
Definition: datetime.cpp:50
bool has_GGA_datum() const
true if the corresponding field exists in messages.
A class for calling sleep() in a loop, such that the amount of sleep time will be computed to make th...
void insert(const CObservation::Ptr &obs)
Inserts a new observation to the list: The pointer to the objects is copied, thus DO NOT delete the p...
mrpt::serialization::CArchive * m_out_arch_ptr
#define MRPT_START
Definition: exceptions.h:241
std::string read_string(const std::string &section, const std::string &name, const std::string &defaultValue, bool failIfNotFound=false) const
std::vector< double > rawMeasurements
The accelerometer and/or gyroscope measurements taken by the IMU at the given timestamp.
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
bool open(const std::string &fileName, int compress_level=1, mrpt::optional_ref< std::string > error_msg=std::nullopt)
Open a file for write, choosing the compression level.
mrpt::poses::CPose2D odometry
The absolute odometry measurement (IT IS NOT INCREMENTAL)
TListObservations m_global_list_obs
bool sleep()
Sleeps for some time, such as the return of this method is 1/rate (seconds) after the return of the p...
Definition: CRateTimer.cpp:25
orientation pitch absolute value (global/navigation frame) (rad)
std::string m_rawlog_ext_imgs_dir
Directory where to save externally stored images, only for CCameraSensor&#39;s.
A high-performance stopwatch, with typical resolution of nanoseconds.
void setMinLoggingLevel(const VerbosityLevel level)
Set the minimum logging level for which the incoming logs are going to be taken into account...
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Definition: datetime.h:86
Contains classes for various device interfaces.
T::Ptr getObservationByClass(size_t ith=0) const
Returns the i&#39;th observation of a given class (or of a descendant class), or nullptr if there is no s...
STL namespace.
std::string MRPT_getCompilationDate()
Returns the MRPT source code timestamp, according to the Reproducible-Builds specifications: https://...
Definition: os.cpp:154
std::string fileNameStripInvalidChars(const std::string &filename, const char replacement_to_invalid_chars='_')
Replace invalid filename chars by underscores (&#39;_&#39;) or any other user-given char. ...
Definition: filesystem.cpp:329
This class stores measurements from an Inertial Measurement Unit (IMU) (attitude estimation, raw gyroscope and accelerometer values), altimeters or magnetometers.
mrpt::system::COutputLogger COutputLogger
The parameter to be passed to "computeFromOdometry".
static time_point now() noexcept
Returns the current time using the currently selected Clock source.
Definition: Clock.cpp:94
mrpt::hwdrivers::CGenericSensor::TListObservations TListObservations
Declares a class for storing a collection of robot actions.
bool show_sensor_thread_exceptions
If enabled (default), exceptions in sensor threads will be reported to std::cerr. ...
void dump_verbose_info(const mrpt::serialization::CSerializable::Ptr &o) const
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT&#39;s CStream, std::istream, std::ostream, std::stringstream.
Definition: CArchive.h:592
VerbosityLevel getMinLoggingLevel() const
LockHelper< T > lockHelper(T &t)
Syntactic sugar to easily create a locker to any kind of std::mutex.
Definition: lock_helper.h:50
const CObservation::Ptr & getObservationByIndex(size_t idx) const
Returns the i&#39;th observation in the list (0=first).
void getDescriptionAsText(std::ostream &o) const override
Build a detailed, multi-line textual description of the observation contents and dump it to the outpu...
#define MRPT_LOG_DEBUG_FMT(_FMT_STRING,...)
Use: MRPT_LOG_DEBUG_FMT("i=%u", i);
void initialize(int argc, const char **argv)
Initializes the application from CLI parameters.
The parts of a date/time (it&#39;s like the standard &#39;tm&#39; but with fractions of seconds).
Definition: datetime.h:49
static Ptr createSensorPtr(const std::string &className)
Just like createSensor, but returning a smart pointer to the newly created sensor object...
std::string rawlog_filename
The generated .rawlog file.
void run()
Runs with the current parameter set.
#define IS_DERIVED(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is an instance of the given ...
Definition: CObject.h:151
uint8_t day
Month (1-12)
Definition: datetime.h:53
This namespace contains representation of robot actions and observations.
Declares a class for storing a "sensory frame", a set of "observations" taken by the robot approximat...
Definition: CSensoryFrame.h:51
#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
std::atomic_bool allThreadsMustExit
#define MRPT_LOG_DEBUG_STREAM(__CONTENTS)
Use: MRPT_LOG_DEBUG_STREAM("Var=" << value << " foo=" << foo_var);
void SensorThread(std::string sensor_label)
MSG_CLASS & getMsgByClass()
Returns a reference to the message in the list CObservationGPS::messages of the requested class...
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void getAllSections(std::vector< std::string > &sections) const override
Returns a list with all the section names.
void process_observations_for_nonsf(const TListObservations &list_obs)
Declares a class for storing a robot action.
Definition: CAction.h:24
double second
Minute (0-59)
Definition: datetime.h:56
#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...
void setRate(const double rate_hz)
Changes the object loop rate (Hz)
Definition: CRateTimer.cpp:20
#define MRPT_LOG_INFO_STREAM(__CONTENTS)
double run_for_seconds
If >0, run() will return after this period (in seconds)
std::string sensorLabel
An arbitrary label that can be used to identify the sensor.
Definition: CObservation.h:62
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
int32_t encoderLeftTicks
For differential-driven robots: The ticks count for each wheel in ABSOLUTE VALUE (IT IS NOT INCREMENT...
uint8_t minute
Hour (0-23)
Definition: datetime.h:55
std::multimap< mrpt::system::TTimeStamp, mrpt::serialization::CSerializable::Ptr > TListObservations
void process_observations_for_sf(const TListObservations &list_obs)
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
Definition: CPose2D.h:39
Declares a class that represents any robot&#39;s observation.
Definition: CObservation.h:43
#define MRPT_LOG_ERROR(_STRING)
bool read_bool(const std::string &section, const std::string &name, bool defaultValue, bool failIfNotFound=false) const
void setContent(const std::vector< std::string > &stringList)
Changes the contents of the virtual "config file".
constexpr double RAD2DEG(const double x)
Radians to degrees.
#define ASSERT_ABOVE_(__A, __B)
Definition: exceptions.h:155
#define MRPT_END
Definition: exceptions.h:245
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
std::string file_get_contents(const std::string &fileName)
Loads an entire text file and return its contents as a single std::string.
uint8_t month
The year.
Definition: datetime.h:52
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
uint8_t hour
Day (1-31)
Definition: datetime.h:54
const int argc
orientation yaw absolute value (global/navigation frame) (rad)
double timeDifference(const mrpt::system::TTimeStamp t_first, const mrpt::system::TTimeStamp t_later)
Returns the time difference from t1 to t2 (positive if t2 is posterior to t1), in seconds...
Definition: datetime.h:123
orientation roll absolute value (global/navigation frame) (rad)
std::string MRPT_getVersion()
Returns a string describing the MRPT version.
Definition: os.cpp:187
An observation of the current (cumulative) odometry for a wheeled robot.
Saves data to a file and transparently compress the data using the given compression level...
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
std::atomic_size_t rawlog_saved_objects
Counter of saved objects.
#define ASSERT_FILE_EXISTS_(FIL)
Definition: filesystem.h:22
void dump_GPS_mode_info(const mrpt::obs::CObservationGPS &o) const
This class stores messages from GNSS or GNSS+IMU devices, from consumer-grade inexpensive GPS receive...
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
Definition: exceptions.h:69
#define MRPT_LOG_ERROR_STREAM(__CONTENTS)
size_t size() const
Returns the number of observations in the list.
mrpt::config::CConfigFileMemory params
Populated in initialize().
void dump_IMU_info(const mrpt::obs::CObservationIMU &o) const
#define MRPT_LOG_INFO_FMT(_FMT_STRING,...)
#define MRPT_LOG_INFO(_STRING)
mrpt::obs::CSensoryFrame m_curSF
void insert(CAction &action)
Add a new object to the list.



Page generated by Doxygen 1.8.14 for MRPT 2.0.3 Git: 8e9e8af54 Wed May 13 17:41:24 2020 +0200 at miƩ may 13 17:55:54 CEST 2020