MRPT  1.9.9
changeLog_doc.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 
10 // clang-format off
11 
12 /** \page changelog Change Log
13  *
14 
15 ------
16 # Version 2.0.0: (Under development)
17 - **Most important changes:**
18  - MRPT now requires **C++17** to build and use. See this page for a guide to port existing code to MRPT 2.0: \ref porting_mrpt2
19  - Support for old namespaces `mrpt-scanmatching`, `mrpt-reactivenav` is over.
20  - Backwards compatible headers for "maps" and "observations" in mrpt::slam are removed. They moved to their own namespaces in MRPT v1.3.0 (Jan 2015).
21  - All pointer typedefs are now in their respective classes: FooPtr -> Foo::Ptr
22  - Add support for serialization with std::variant
23  - PbMap has been factored out into [its own repository](https://github.com/MRPT/pbmap)
24  - XML-based database C++ classes have been removed from MRPT.
25 - Changes in applications:
26  - RawLogViewer:
27  - The ICP module now supports Velodyne 3D scans.
28  - rawlog-edit:
29  - New operation: `--de-externalize`
30  - pf-localization:
31  - Odometry is now used also for observation-only rawlogs.
32 - Changes in libraries:
33  - All `otherlibs` subdirectories have been renamed to `3rdparty` since it is a widespread name used in most projects.
34  - \ref mrpt_base_grp => Refactored into several smaller libraries, one per namespace.
35  - Removed class std::vector<std::string>. Replace by STL containers of `std::string` and functions mrpt::system::stringListAsString() in \ref string_manage.
36  - \ref mrpt_core_grp [NEW IN MRPT 2.0.0]
37  - Memory alignment of aligned_allocator_cpp11<> is set to 16,32 or 64 depending on whether AVX optimizations are enabled, to be compatible with Eigen.
38  - mrpt::cpu::supports(): a new cross-OS CPU feature detection function.
39  - mrpt::Clock allows users to select between Realtime or Monotonic sources.
40  - \ref mrpt_math_grp [NEW IN MRPT 2.0.0]
41  - Removed functions (replaced by C++11/14 standard library):
42  - mrpt::math::erf, mrpt::math::erfc, std::isfinite, mrpt::math::std::isnan
43  - `mrpt::math::make_vector<>` => `std::vector<>{...}` braced initializator
44  - Removed the include file: `<mrpt/math/jacobians.h>`. Replace by `<mrpt/math/num_jacobian.h>` or individual methods in \ref mrpt_poses_grp classes.
45  - \ref mrpt_config_grp [NEW IN MRPT 2.0.0]
46  - mrpt::config::CConfigFileBase::write() now supports enum types.
47  - \ref mrpt_gui_grp
48  - New class mrpt::gui::CDisplayWindowGUI exposing powerful GUI possibilities via the nanogui project.
49  - \ref mrpt_img_grp [NEW IN MRPT 2.0.0]
50  - mrpt::img::TCamera distortion parameters now also supports the extra K4,K5,K6 distortion parameters.
51  - \ref mrpt_serialization_grp [NEW IN MRPT 2.0.0]
52  - New method mrpt::serialization::CArchive::ReadPOD() and macro `MRPT_READ_POD()` for reading unaligned POD variables.-
53  - Add support for `$env{}` syntax to evaluate environment variables.
54  - \ref mrpt_slam_grp
55  - rbpf-slam: Add support for simplemap continuation.
56  - CICP: parameter `onlyClosestCorrespondences` deleted (always true now).
57  - mrpt::slam::CICP API: Simplified and modernized to use only one output parameter, using std::optional.
58  - \ref mrpt_system_grp
59  - functions to get timestamp as *local* time were removed, since they don't make sense. All timestamps in MRPT are UTC, and they can be formated as dates in either UTC or local time frames.
60  - Added: mrpt::system::WorkerThreadsPool
61  - \ref mrpt_rtti_grp [NEW IN MRPT 2.0.0]
62  - All classes are now registered (and de/serialized) with their full name including namespaces. A backwards-compatible flag has been added to mrpt::rtti::findRegisteredClass().
63  - CLASS_INIT() macro for automatic registration of classes has been removed, since it is not well-defined in which order global objects will be initialized.
64  Therefore, manual registration (as already done in registerAllClasses.cpp files) is left as the unique registration system.
65  This fixes warning messages "[mrpt::rtti::registerClass] Warning: Invoked with a nullptr".
66  - \ref mrpt_nav_grp
67  - Removed deprecated mrpt::nav::THolonomicMethod.
68  - mrpt::nav::CAbstractNavigator: callbacks in mrpt::nav::CRobot2NavInterface are now invoked *after* `navigationStep()` to avoid problems if user code invokes the navigator API to change its state.
69  - Added methods to load/save mrpt::nav::TWaypointSequence to configuration files.
70  - Waypoints now have a field `speed_ratio` which is directly forwarded to the low-level reactive navigator.
71  - \ref mrpt_comms_grp [NEW IN MRPT 2.0.0]
72  - This new module has been created to hold all serial devices & networking classes, with minimal dependencies.
73  - \ref mrpt_maps_grp
74  - mrpt::maps::CMultiMetricMap has been greatly simplified and now it is actually defined in the mrpt-maps library.
75  - New map type: mrpt::maps::CPointsMapXYZI for pointclouds with an intensity channel.
76  - New observation class: mrpt::obs::CObservationPointCloud
77  - Added optional "channel" attribute to CReflectivityGridMap2D and CObservationReflectivity to support different colors of light.
78  - \ref mrpt_hwdrivers_grp
79  - COpenNI2Generic: is safer in multithreading apps.
80  - CHokuyoURG:
81  - Rewrite driver to be safer and reduce mem allocs.
82  - New parameter `scan_interval` to decimate scans.
83  - VelodyneCalibration: Can now load YAML files, in addition to XML.
84  - New sensor state enum value: mrpt::hwdrivers::CGenericSensor::ssUninitialized
85  - NMEA GPS parser: now also recognizes all existing talker IDs (GP, GN, GA, etc.)
86  - \ref mrpt_opengl_grp
87  - Update Assimp lib version 4.0.1 -> 4.1.0 (when built as ExternalProject)
88  - Rendering engine rewritten to work using OpenGL Core (GLSL 3.3) instead of Legacy fixed functions.
89  - \ref mrpt_obs_grp
90  - mrpt::obs::CObservation2DRangeScan: Deprecated access to scan data via proxy objects `obs->scan[i]`, `obs->validRange[i]`, `obs->intensity[i]` has been deleted. Please use the alternative getters/setters: `obs->getScanRange(i)`, etc.
91  - mrpt::obs::T3DPointsProjectionParams and mrpt::obs::CObservation3DRangeScan::unprojectInto now together support organized PCL point clouds.
92  - New method: mrpt::obs::CObservation3DRangeScan::rangeImage_getAsImage()
93  - Support for multiple-return sensors in mrpt::obs::CObservation3DRangeScan.
94  - New NMEA frame class: Message_NMEA_GSA
95  - \ref mrpt_poses_grp [NEW IN MRPT 2.0.0]
96  - Reorganized all Lie Algebra methods into \ref mrpt_poses_lie_grp
97  - Removed CPose3DRotVec, since its conceptual design is identical to Lie tangent space vectors.
98  - \ref mrpt_vision_grp
99  - Removed FASTER methods, and the libCVD 3rd party dependency.
100 
101 - BUG FIXES:
102  - Fix reactive navigator inconsistent state if navigation API is called from within rnav callbacks.
103  - Fix incorrect evaluation of "ASSERT" formulas in mrpt::nav::CMultiObjectiveMotionOptimizerBase
104  - Fix aborting reading from LMS111 scanner on first error.
105  - Fix == operator on CPose3D: it now uses an epsilon for comparing the rotation matrices.
106  - Fix accessing unaligned POD variables deserializing CObservationGPS (via the new `MRPT_READ_POD()` macro).
107  - Fix segfault in CMetricMap::loadFromSimpleMap() if the provided CMetricMap has empty smart pointers.
108  - Fix crash in CGPSInterface when not setting an external mutex.
109  - Fix potential crashes in RawLogViewer while editing list of observations.
110  - Fix incorrect conversion from quaternion to CPose3D.
111 
112 <a name="1.5.7">
113 <h2>Version 1.5.7: Released 24/APR/2019 </h2></a>
114 - <b>Detailed list of changes:</b>
115  - \ref mrpt_base_grp
116  - The following features have been finally ported to C++11. User code now requires, at least, C++11 enabled:
117  - stlplus-based smart pointers replaced by std::shared_ptr. Backwards compatibility API is maintained.
118  - mrpt::system::TThreadHandle now is a wrapper around std::thread.
119  - Atomic counters now based on std::atomic. Custom implementation has been removed.
120  - stlplus source code has been removed.
121  - mrpt::utils::COutputLogger: change log str format from "[name|type|time]" to "[time|type|name]".
122  - \ref mrpt_graphslam_grp
123  - levenberg-Marquardt graphslam modified to use more stable SE(2) Jacobians.
124  - CNetworkOfPoses: read/write format made compatible with G2O EDGE_SE2 types.
125  - \ref mrpt_nav_grp
126  - Add virtual method CAbstractPTGBasedReactive::getHoloMethod()
127  - New method CAbstractPTGBasedReactive::enableRethrowNavExceptions() to rethrow exceptions during navigation.
128  - Waypoints now have a field `speed_ratio` which is directly forwarded to the low-level reactive navigator.
129  - BUG FIXES:
130  - Fix missing "-ldl" linker flag.
131  - Fix building against wxWidgets 3.1.1 in Windows (zlib link error).
132  - Fix potential segfault in 3D reactive navigator.
133 
134 <hr>
135 <a name="1.5.6">
136 <h2>Version 1.5.6: Released 24/APR/2018 </h2></a>
137  - Applications:
138  - pf-localization:
139  - Odometry is now used also for observation-only rawlogs.
140  - \ref mrpt_hwdrivers_grp
141  - mrpt::hwdrivers::COpenNI2Generic: added mutexes for safer
142 multi-threading operation.
143  - mrpt::hwdrivers::CHokuyoURG: Added a new parameter to skip scans.
144 Driver clean up to be safer and perform less memory allocs.
145  - \ref mrpt_maps_grp
146  - COccupancyGridMap2D: New LIDAR insertion parameters:
147 maxFreenessUpdateCertainty, maxFreenessInvalidRanges.
148  - \ref mrpt_reactivenav_grp
149  - CAbstractPTGBasedReactive: Added new score `holo_stage_eval`.
150  - BUG FIXES:
151  - circular_buffer: exception made state preserving
152 
153 <hr>
154 <a name="1.5.5">
155 <h2>Version 1.5.5: (Under development) </h2></a>
156 - <b>Detailed list of changes:</b>
157  - \ref mrpt_nav_grp
158  - mrpt::nav::CHolonomicFullEval now uses an internal sin/cos LUT cache
159 for improved performance.
160  - \ref mrpt_hwdrivers_grp
161  - A new class for SICK TIM561(TIM55x/TIM56x) lidar:
162  - A new source file named CSICKTim561Eth_2050101.cpp, which supports
163 SICK TIM series lidar including Tim55x, Tim56x
164  - mrpt::hwdrivers::CSICKTim561Eth
165  - A new test sample for SICK TIM561(TIM55x/TIM56x) lidar:
166  - sample/SICK_tim561eth_test/test.cpp
167  - BUG FIXES:
168  - Fix likelihood computation in mrpt::maps::CReflectivityGridMap2D
169 (which led to crash)
170  - Fixed regression in particle resampling affecting RBPF-SLAM methods.
171 Introduced in Dec. 2016 with [this
172 commit](https://github.com/MRPT/mrpt/commit/691973813bdc53d3faa7088b092eb041aa80d0ce).
173 
174 <hr>
175 <a name="1.5.4">
176 <h2>Version 1.5.4: Released 31/OCT/2017 </h2></a>
177 - <b>Detailed list of changes:</b>
178  - \ref mrpt_base_grp
179  - Fix potential uninitialized value in
180 CRobot2DPoseEstimator::getLatestRobotPose()
181  - MRPT_getCompilationDate() returns time as well
182  - \ref mrpt_gui_grp
183  - mrpt::gui::mrptEventMouseMove: Added new mrpt::gui windows event
184 type.
185  - Build system:
186  - Fix MRPTConfig.cmake for system octomap libraries.
187  - Fix package-contains-vcs-control-file (.gitingore) Lintian error.
188  - Fix compiling without liboctomap-dev in Ubuntu PPA.
189  - BUG FIXES:
190  - Fix waypoint reactive navigator edge case in which "end event" won't
191 be issued.
192  - Fix waypoint reactive navigator error while doing final aligning
193 (missing and dupplicated nav-end events).
194  - Fix aborting reading from LMS111 scanner on first error.
195  - Fix waypoint reactive navigator edge case in which "end event" won't
196 be issued.
197  - Fix corrupted pointers in CNetworkOfPoses after copy or move
198 operations.
199  - Fix invalid TP-targets generated during reactive navigation.
200  - Fix memory leak in reactivenav engine.
201  - Fix potential out-of-range access in
202 CObservation3DRangeScan::convertTo2DScan()
203 
204 <hr>
205 <a name="1.5.3">
206 <h2>Version 1.5.3: Released 13/AUG/2017 </h2></a>
207 - <b>Detailed list of changes:</b>
208  - CMake >=3.1 is now required for use of ExternalProjects.
209  - Scripts `scripts/prepare_{debian,release}.sh` have been refactored and
210 simplified.
211  - Removed embedded source code versions of Eigen, assimp and octomap.
212 Downloaded and built as ExternalProjects if not present in the system.
213  - Releases will be signed with PGP from now on and posted as binary
214 attachments to GitHub releases.
215 
216 <hr>
217 <a name="1.5.2">
218 <h2>Version 1.5.2: Released 6/AUG/2017 </h2></a>
219 - <b>Detailed list of changes:</b>
220  - Changes in libraries:
221  - \ref mrpt_base_grp
222  - Added methods:
223  - mrpt::synch::CCriticalSection::try_enter()
224  - mrpt::synch::CCriticalSectionRecursive::try_enter()
225  - \ref mrpt_nav_grp
226  - mrpt::nav::CAbstractNavigator: callbacks in
227 mrpt::nav::CRobot2NavInterface are now invoked *after* `navigationStep()` to
228 avoid problems if user code invokes the navigator API to change its state.
229  - Added methods to load/save mrpt::nav::TWaypointSequence to
230 configuration files.
231  - \ref mrpt_slam_grp
232  - rbpf-slam: Add support for simplemap continuation.
233  - BUG FIXES:
234  - Fix reactive navigator inconsistent state if navigation API is called
235 from within rnav callbacks.
236  - Fix incorrect evaluation of "ASSERT" formulas in
237 mrpt::nav::CMultiObjectiveMotionOptimizerBase
238 
239 <hr>
240 <a name="1.5.1">
241 <h2>Version 1.5.1: Released 21/JUN/2017 </h2></a>
242 - <b>Detailed list of changes:</b>
243  - Changes in libraries:
244  - \ref mrpt_nav_grp
245  - fix const-correctness:
246 [commit](https://github.com/MRPT/mrpt/commit/7e79003d2adeb7b170fa04e0bc34d42707e07306)
247  - More flexible callback behavior:
248 [commit](https://github.com/MRPT/mrpt/commit/5b054336a1ac75f6e4f8741e5049971917a2980a)
249 
250 
251 <hr>
252 <a name="1.5.0">
253 <h2>Version 1.5.0: Released 10-JUN-2018</h2></a>
254  - Changes in apps:
255  - New app
256 [PTG-configurator](http://www.mrpt.org/list-of-mrpt-apps/application-ptg-configurator/)
257  -
258 [ReactiveNavigationDemo](http://www.mrpt.org/list-of-mrpt-apps/application-reactivenavigationdemo/)
259 has been totally rebuilt as a 3D visualizer capable of testing different
260 navigation algorithms and robot kinematics.
261  - [RawLogViewer](http://www.mrpt.org/list-of-mrpt-apps/rawlogviewer/):
262  - Now displays a textual and graphical representation of all
263 observation timestamps, useful to quickly detect sensor "shortages" or temporary
264 failures.
265  - New menu operation: "Edit" -> "Rename selected observation"
266  - mrpt::obs::CObservation3DRangeScan pointclouds are now shown in
267 local coordinates wrt to the vehicle/robot, not to the sensor.
268  -
269 [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/):
270 New flag: `--txt-externals`
271  - Changes in libraries:
272  - \ref mrpt_base_grp
273  - New API to interface ZeroMQ: \ref noncstream_serialization_zmq
274  - Deprecated function (since 1.3.0) deleted:
275 mrpt::system::registerFatalExceptionHandlers()
276  - New method mrpt::poses::CPosePDFParticles::resetAroundSetOfPoses()
277  - Class mrpt::utils::CRobotSimulator renamed ==>
278 mrpt::kinematics::CVehicleSimul_DiffDriven
279  - New twist (linear + angular velocity state) classes:
280 mrpt::math::TTwist2D, mrpt::math::TTwist3D
281  - New template method: mrpt::utils::CStream::ReadAsAndCastTo
282  - Added missing method mrpt::poses::CPose2D::inverseComposePoint()
283 for consistency with CPose3D
284  - New class std::recursive_mutex
285  - New class mrpt::system::COutputLogger replaces the classes
286 mrpt::utils::CDebugOutputCapable (deprecated) and mrpt::utils::CLog (removed).
287  - New macros for much more versatily logging:
288  - MRPT_LOG_DEBUG(), MRPT_LOG_INFO(), MRPT_LOG_WARN(),
289 MRPT_LOG_ERROR()
290  - MRPT_LOG_DEBUG_STREAM, MRPT_LOG_INFO_STREAM,
291 MRPT_LOG_WARN_STREAM, MRPT_LOG_ERROR_STREAM
292  - New functions for polynomial roots: see \ref polynomial_roots
293  - New functions for signal filtering: see \ref filtering_grp
294  - New functions for Fresnel integrals: see \fresnel_integrals_grp
295  - New classes mrpt::math::CAtan2LookUpTable,
296 mrpt::math::CAtan2LookUpTableMultiRes
297  - [API change] The following functions are no longer static methods:
298 (since their classes are now derived from the state-aware
299 mrpt::system::COutputLogger)
300  - mrpt::math::RANSAC_Template::execute()
301  - mrpt::math::CLevenbergMarquardtTempl::execute()
302  - Deleted methods in Eigen-extensions: leftDivideSquare(),
303 rightDivideSquare()
304  - Removed support for **named** semaphores in
305 mrpt::synch::CSemaphore
306  - new method mrpt::system::CTimeLogger::getLastTime()
307  - Removed mrpt::utils::CStartUpClassesRegister, replaced by the new
308 macro MRPT_INITIALIZER()
309  - New class mrpt::utils::CRateTimer
310  - mrpt::poses::CRobot2DPoseEstimator now uses a more generic
311 odometry-based velocity model (vx,vy,omega).
312  - New template mrpt::utils::ts_hash_map<> for thread-safe,
313 std::map-like containers based on hash functions.
314  - Included exprtk header-only library to runtime compile &
315 evaluation of mathematical expressions, under `<mrpt/3rdparty/exprtk.hpp>`
316  - New smart pointer templates: `mrpt::utils::copy_ptr<>`,
317 `mrpt::utils::poly_ptr<>`.
318  - New colormap: mrpt::utils::hot2rgb()
319  - New function mrpt::system::find_mrpt_shared_dir()
320  - New class mrpt::containers::CDynamicGrid3D<>
321  - New function mrpt::comms::net::http_request()
322  - New function mrpt::system::now_double()
323  - New function mrpt::rtti::getAllRegisteredClassesChildrenOf()
324  - Safer CClassRegistry: detect and warn on attempts to duplicated
325 class registration.
326  - New class mrpt::expr::CRuntimeCompiledExpression
327  - mrpt::config::CConfigFile and mrpt::config::CConfigFileMemory now
328 can parse config files with end-of-line backslash to split long strings into
329 several lines.
330  - New class mrpt::poses::FrameTransformer
331  - mrpt::poses classes now have all their constructors from
332 mrpt::math types marked as explicit, to avoid potential ambiguities and
333 unnoticed conversions.
334  - [Sophus](https://github.com/strasdat/Sophus/) is now used
335 internally for some Lie Algebra methods, and also exposed to the user as
336 `#include <mrpt/3rdparty/sophus/so3.hpp>`, etc. as part of mrpt-base
337  - \ref mrpt_bayes_grp
338  - [API change] `verbose` is no longer a field of
339 mrpt::bayes::CParticleFilter::TParticleFilterOptions. Use the
340 setVerbosityLevel() method of the CParticleFilter class itself.
341  - [API change] mrpt::bayes::CProbabilityParticle (which affects all
342 PF-based classes in MRPT) has been greatly simplified via usage of the new
343 mrpt::utils::copy_ptr<> pointee-copy-semantics smart pointer.
344  - \ref mrpt_graphs_grp
345  - New class mrpt::graphs::ScalarFactorGraph, a simple but extensible
346 linear GMRF solver. Refactored from mrpt::maps::CGasConcentrationGridMap2D, etc.
347  - \ref mrpt_gui_grp
348  - mrpt::gui::CWxGLCanvasBase is now derived from
349 mrpt::opengl::CTextMessageCapable so they can draw text labels
350  - New class mrpt::gui::CDisplayWindow3DLocker for exception-safe 3D
351 scene lock in 3D windows.
352  - \ref mrpt_hwdrivers_grp
353  - Using rplidar newest SDK 1.5.6 instead of 1.4.3, which support
354 rplidar A1 and rplidar A2
355  - mrpt::hwdrivers::CNTRIPEmitter can now also dump raw NTRIP data to
356 a file
357  - \ref mrpt_kinematics_grp
358  - New classes for 2D robot simulation:
359  - mrpt::kinematics::CVehicleSimul_DiffDriven
360  - mrpt::kinematics::CVehicleSimul_Holo
361  - New classes for 2D robot kinematic motion commands. See children
362 of mrpt::kinematics::CVehicleVelCmd
363  - \ref mrpt_maps_grp
364  - mrpt::maps::COccupancyGridMap2D::loadFromBitmapFile() correct
365 description of `yCentralPixel` parameter.
366  - mrpt::maps::CPointsMap `liblas` import/export methods are now in a
367 separate header. See \ref mrpt_maps_liblas_grp and \ref dep-liblas
368  - New class mrpt::maps::CRandomFieldGridMap3D
369  - New class mrpt::maps::CPointCloudFilterByDistance
370  - \ref mrpt_obs_grp
371  - [ABI change] mrpt::obs::CObservation2DRangeScan
372  - range scan vectors are now protected for safety.
373  - New getter/setter methods.
374  - backwards-compatible proxies added for read-only from range
375 scan members.
376  - [ABI change] mrpt::obs::CObservation3DRangeScan:
377  - Now uses more SSE2 optimized code
378  - Depth filters are now available for
379 mrpt::obs::CObservation3DRangeScan::unprojectInto() and
380 mrpt::obs::CObservation3DRangeScan::convertTo2DScan()
381  - New switch
382 mrpt::obs::CObservation3DRangeScan::EXTERNALS_AS_TEXT for runtime selection of
383 externals format.
384  - mrpt::obs::CObservation2DRangeScan now has an optional field for
385 intensity.
386  - mrpt::obs::CRawLog can now holds objects of arbitrary type, not
387 only actions/observations. This may be useful for richer logs aimed at
388 debugging.
389  - mrpt::obs::CObservationVelodyneScan::generatePointCloud() can now
390 generate the microseconds-precise timestamp for each individual point (new param
391 `generatePerPointTimestamp`).
392  - \ref mrpt_opengl_grp
393  - [ABI change] mrpt::opengl::CAxis now has many new options exposed
394 to configure its look.
395  - mrpt::opengl::CSetOfLines can now optionally show vertices as
396 dots.
397  - lib3DS is no longer shipped as an embedded version. A system
398 library in Linux is required to use mrpt::opengl::C3DSScene. Use
399 mrpt::opengl::CAssimpModel as a more powerful alternative.
400  - \ref mrpt_slam_grp
401  - [API change] mrpt::slam::CMetricMapBuilder::TOptions does not have
402 a `verbose` field anymore. It's supersedded now by the verbosity level of the
403 CMetricMapBuilder class itself.
404  - [API change] getCurrentMetricMapEstimation() renamed
405 mrpt::slam::CMultiMetricMapPDF::getAveragedMetricMapEstimation() to avoid
406 confusions.
407  - \ref mrpt_hwdrivers_grp
408  - mrpt::hwdrivers::CGenericSensor: external image format is now
409 `png` by default instead of `jpg` to avoid losses.
410  - [ABI change] mrpt::hwdrivers::COpenNI2Generic:
411  - refactored to expose more methods and allow changing
412 parameters via its constructor.
413  - Now supports reading from an IR, RGB and Depth channels
414 independenty.
415  - mrpt::hwdrivers::CHokuyoURG now can optionally return intensity
416 values.
417  - Deleted old, unused classes:
418  - mrpt::hwdrivers::CBoardIR
419  - mrpt::hwdrivers::CBoardDLMS
420  - mrpt::hwdrivers::CPtuHokuyo
421  - mrpt::hwdrivers::CHokuyoURG no longer as a "verbose" field. It's
422 superseded now by the COutputLogger interface.
423  - mrpt::hwdrivers::CActivMediaRobotBase and the embedded ARIA
424 library have been removed. Nowadays, one can access to ARIA robots via ROS
425 packages more easily than via MRPT.
426  - \ref mrpt_maps_grp
427  - mrpt::maps::CMultiMetricMapPDF added method
428 CMultiMetricMapPDF::prediction_and_update_pfAuxiliaryPFStandard().
429  - \ref mrpt_nav_grp
430  - New mrpt::nav::CWaypointsNavigator interface for waypoint
431 list-based navigation.
432  - [ABI & API change] PTG classes refactored (see new virtual base
433 class mrpt::nav::CParameterizedTrajectoryGenerator and its derived classes):
434  - Old classes `CPTG%d` have been renamed to describe each path
435 type. Old PTGs #6 and #7 have been removed for lack of practical use.
436  - New separate classes for PTGs based on numerically-integrated
437 paths and on closed-form formulations.
438  - Old deprecated method of PTGs `lambdaFunction()` removed.
439  - Parameters are no longer passed via a
440 mrpt::system::TParameters class, but via a mrpt::config::CConfigFileBase which
441 makes parameter passing to PTGs much more maintainable and consistent.
442  - PTGs now have a score_priority field to manually set hints
443 about preferences for path planning.
444  - PTGs are now mrpt::config::CLoadableOptions classes
445  - New classes:
446  - mrpt::nav::CMultiObjectiveMotionOptimizerBase
447  - \ref mrpt_graphslam_grp
448  - Extend mrpt-graphslam lib to execute simulated/real-time
449 graphSLAM. mrpt-graphslam supports 2D/3D execution of graphSLAM, utilizing
450  LaserScans, odometry information.
451  - Develop application `graphslam-engine` that executes graphSLAM via
452  the mrpt-graphslam lib
453  - mrpt::grpahslam::CGraphSlamEngine as the generic object that
454  manages graphSLAM, Node/Edge registration decider
455  classes under the mrpt::graphslam::deciders namesapce, optimizer
456  wrapper classes under mrpt::graphslam::optimizers
457  - Changes in build system:
458  - [Windows only] `DLL`s/`LIB`s now have the signature
459 `lib-${name}${2-digits-version}${compiler-name}_{x32|x64}.{dll/lib}`, allowing
460 several MRPT versions to coexist in the system PATH.
461  - [Visual Studio only] There are no longer `pragma comment(lib...)` in
462 any MRPT header, so it is the user responsibility to correctly tell user
463 projects to link against MRPT libraries. Normally, this is done with the
464 standard command `TARGET_LINK_LIBRARIES(MYTARGET ${MRPT_LIBS})`.
465  - Debian package: depends on libopenni-dev
466  - Optional dependency `liblas`: minimum required version is now 1.6.0
467 (Ubuntu Trusty or above).
468  - Update of embedded copy of nanoflann to version 1.2.0.
469  - New script for automated dumping stack traces on unit tests failures
470 (`tests/run_all_tests_gdb.sh`)
471  - Fix build against wxWidgets 3.1.*
472  - Embedded version of gtest upgraded to 1.8.0
473  - BUG FIXES:
474  - Fix inconsistent state after calling
475 mrpt::obs::CObservation3DRangeScan::swap()
476  - Fix SEGFAULT in mrpt::obs::CObservation3DRangeScan if trying to build
477 a pointcloud in an external container (mrpt::opengl, mrpt::maps)
478  - Fix mrpt::hwdrivers::CHokuyoURG can return invalid ray returns as
479 valid ranges.
480  - Fix PTG look-up-tables will always fail to load from cache files and
481 will re-generate (Closes [GitHub #243](https://github.com/MRPT/mrpt/issues/243))
482  - Fix mrpt::maps::COccupancyGridMap2D::simulateScanRay() fails to mark
483 out-of-range ranges as "invalid".
484  - Fix mrpt::io::CMemoryStream::Clear() after assigning read-only
485 memory blocks.
486  - Fix point into polygon checking not working for concave polygons. Now,
487 mrpt::math::TPolygon2D::contains() uses the winding number test which works for
488 any geometry.
489  - Fix inconsistent internal state after externalizing
490 mrpt::obs::CObservation3DRangeScan
491  - Fix a long outstanding bug regarding losing of keystroke events in
492 CDisplayWindow3D windows (Closes #13 again)
493  - Fix wrong units for negative numbers in mrpt::system::unitsFormat()
494  - Fix potential thread-unsafe conditions while inserting a
495 mrpt::obs::CObservation2DRangeScan into a pointmap with SSE2 optimizations
496 enabled.
497  - CStream: Fix memory leak if an exception (e.g. EOF) is found during
498 object deserialization.
499  - Fix a bug in the `onlyUniqueRobust` option for point cloud matching
500 (affecting CICP, etc.). Thanks [Shuo](https://github.com/ygzhangsoya)!
501 
502 <hr>
503 <a name="1.4.0">
504  <h2>Version 1.4.0: Released 22-APR-2016 </h2></a>
505  - <b>Most important changes:</b>
506  - Support for Velodyne LIDAR sensors.
507  - New minor version number due to changes in the API of these classes
508 (read details below): mrpt::obs::CObservationGPS, mrpt::hwdrivers::CGPSInterface
509  - [Python bindings](https://github.com/MRPT/mrpt/wiki/PythonBindings)
510 added for a subset of MRPT functionality (Thanks Peter Rudolph and Nikolaus
511 Demmel!)
512  - <b>Detailed list of changes:</b>
513  - New apps:
514  -
515 [gps2rawlog](http://www.mrpt.org/list-of-mrpt-apps/application-gps2rawlog/):
516 Application to parse raw dumps of a GPS (GNSS) receiver output.
517  -
518 [image2gridmap](http://www.mrpt.org/list-of-mrpt-apps/application-image2gridmap/):
519 Small tool to import any image as an MRPT gridmap object file (*.gridmap).
520  -
521 [velodyne-view](http://www.mrpt.org/list-of-mrpt-apps/application-velodyne-view/):
522 Application to test, visualize and grab data from a live Velodyne sensor or from
523 a PCAP record.
524  - Changes in apps:
525  -
526 [rawlog-grabber](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-grabber/):
527 Now does not show GPS and IMU debug data in console, unless
528 `MRPT_HWDRIVERS_VERBOSE` environment variable is set.
529  -
530 [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/):
531 New operation: `--export-gps-all`
532  - Changes in libraries:
533  - \ref mrpt_base_grp
534  - [ABI change] mrpt::system::tokenize() new parameter
535 `skipBlankTokens`
536  - mrpt::utils::circular_buffer now has peek() methods
537  - Eigen::MatrixBase<Derived>::loadFromTextFile() now also
538 accepts `,` as column separator.
539  - New functions:
540  - mrpt::system::timestampAdd()
541  - mrpt::utils::compute_CRC32()
542  - mrpt::utils::saturate<>()
543  - mrpt::containers::CDynamicGrid<> now uses `double` instead of
544 `float` for all dimensions and coordinate computations.
545  - Priority with these functions now work properly in GNU/Linux;
546 though, see the notes in their documentation for required permissions:
547  - mrpt::system::changeCurrentProcessPriority()
548  - mrpt::system::changeThreadPriority()
549  - New classes/structures:
550  - mrpt::math::TPointXYZIu8, mrpt::math::TPointXYZRGBu8,
551 mrpt::math::TPointXYZfIu8, mrpt::math::TPointXYZfRGBu8
552  - \ref mrpt_hwdrivers_grp
553  - New class mrpt::hwdrivers::CVelodyneScanner
554  - mrpt::hwdrivers::CNTRIPEmitter now has a parameter to
555 enable/disable sending back the data from the serial port to the NTRIP caster.
556  - <b>[API changed]</b> mrpt::hwdrivers::CGPSInterface API
557 clean-up and made more generic so any stream can be used to parse GNSS messages,
558 not only serial ports.
559  - New class mrpt::hwdrivers::CStereoGrabber_Bumblebee_libdc1394
560 for capturing without PGR Flycapture but directly through libdc1394.
561  - Removed class mrpt::hwdrivers::CStereoGrabber_Bumblebee ,
562 superseded by mrpt::hwdrivers::CImageGrabber_FlyCapture2 which is capable of
563 both monocular and stereo grabbing.
564  - \ref mrpt_maps_grp
565  - New class mrpt::maps::CHeightGridMap2D_MRF
566  - New base class mrpt::maps::CHeightGridMap2D_Base
567  - mrpt::maps::COccupancyGridMap2D:
568  - New method
569 mrpt::maps::COccupancyGridMap2D::copyMapContentFrom()
570  - New likelihood parameter `LF_useSquareDist`
571  - New parameter
572 mrpt::maps::COccupancyGridMap2D::RAYTRACE_STEP_SIZE_IN_CELL_UNITS
573  - mrpt::maps::COccupancyGridMap2D::simulateScanRay() is now
574 ~40% (GCC) to ~250% (MSVC) faster by default.
575  - New method
576 mrpt::maps::COccupancyGridMap2D::laserScanSimulatorWithUncertainty()
577  - New method
578 mrpt::maps::CHeightGridMap2D::insertIndividualPoint()
579  - mrpt::maps::CMetricMap::compute3DMatchingRatio() has a
580 simplified API now
581  - \ref mrpt_obs_grp
582  - New class mrpt::obs::CObservationVelodyneScan
583  - mrpt::obs::CSinCosLookUpTableFor2DScans now can build a table
584 from a mrpt::obs::T2DScanProperties structure, which now also has its separate
585 header file for better modularity.
586  - <b>[API changed]</b> mrpt::obs::CObservationGPS now stores
587 only one message per objects. API clean-up and extended so the number of GNSS
588 message types is larger and more scalable.
589  - mrpt::obs::gnss: A new namespace with many new data structures
590 for GPS-related messages
591  - mrpt::obs::CObservation3DRangeScan: projection of RGBD images
592 to 3D points now correctly filters out invalid points, which were in previous
593 versions mapped as (0,0,0) points (relative to the sensor). In turn, this leads
594 to point clouds of a dynamic number of points. In case of needing the (u,v)
595 pixel coordinates of projected points, checkout the new fields `points3D_idxs_x`
596 & `points3D_idxs_y`.
597  - New class mrpt::obs::CObservation2DRangeScanWithUncertainty
598  - \ref mrpt_opengl_grp
599  - New class mrpt::opengl::CMesh3D to render 3D models/meshes
600  - New method
601 mrpt::opengl::CPointCloudColoured::recolorizeByCoordinate()
602  - \ref mrpt_slam_grp
603  - Small clean up of mrpt::slam::CICP API, add separate variable
604 to select covariance estimation method.
605  - \ref mrpt_topography_grp
606  - New function mrpt::topography::geocentricToENU_WGS84()
607  - \ref mrpt_vision_grp
608  - Removed the old GPL-licensed Hess SIFT implementation.
609  - mrpt::vision::CDifOdo has been refactored and now does faster
610 image pyramid computation (By Mariano Jaimez)
611  - mrpt::maps::CLandmarksMap changes:
612  - `beaconMaxRange` & `alphaRatio` parameters have been
613 removed since they were not used.
614  - New likelihood parameter `beaconRangesUseObservationStd`
615 to allow using different uncertainty values with each observation.
616  - Changes in build system:
617  - [Python
618 bindings](https://github.com/MRPT/mrpt/wiki/PythonBindings) added for a subset
619 of MRPT functionality (Thanks Peter Rudolph!)
620  - Code ported to support the new libftdi1-dev (Fixes Debian bug
621 #810368, GitHub issue #176)
622  - Fix building with gcc 6.0 (Closes Debian bug #811812)
623  - CMake new option: `DISABLE_MRPT_AUTO_CLASS_REGISTRATION` to reduce
624 the footprint of MRPT statically-linked programs.
625  - Fix building against wxWidgets 3.1
626  - BUG FIXES:
627  - mrpt::math::CQuaternion<> did not check for unit norm in Release
628 builds.
629  - Fix build errors against OpenCV 3.0.0+ without opencv_contrib
630 modules.
631  - mrpt::hwdrivers::CHokuyoURG now correctly handles opening both USB
632 and Ethernet Hokuyo devices (Closes Github issue #180)
633  - Fixed mrpt::comms::net::DNS_resolve_async() may SIGSEGV in slow
634 networks.
635  - mrpt::opengl::CMesh::updateColorsMatrix() did not ignore cells
636 masked out.
637  - Wrong weights used in mrpt::poses::CPosePDFSOG::getMean()
638  - Removed ad-hoc bias addition in range-only predictions in
639 landmarks maps.
640  - Error loading height map count in
641 mrpt::maps::TSetOfMetricMapInitializers (Closes GitHub issue <a
642 href="https://github.com/MRPT/mrpt/issues/205" >#205</a>.
643  - Fix "gray images" grabbed in Windows when capturing the render
644 output of 3D windows (Thanks Mariano J.T. & Christian Kerl from TUM!)
645  - Fix typos and wxWidgets align errors in RawLogViewer GUI (Closes
646 #219)
647  - mrpt::nav::CHolonomicND & mrpt::nav::CHolonomicVFF didn't use the
648 full range of output velocities.
649  - mrpt::img::CImage::loadFromFile() now does not leave the image in
650 undefined state if the load operation fails.
651  - mrpt::hwdrivers::CLMS100Eth failed to load "pose_yaw" parameter
652 from config file.
653  -
654 mrpt::obs::CObservation3DRangeScan::doDepthAndIntensityCamerasCoincide() did not
655 correctly return `false` for negative offsets between the camera poses.
656 
657 <hr>
658 <a name="1.3.2">
659  <h2>Version 1.3.2: Released 3-NOV-2015 </h2></a>
660  - Changes in Apps:
661  -
662 [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/):
663  - New operation: `--list-poses`
664  - `--list-images` now also works with 3D range scans
665  - Changes in libraries:
666  - The library mrpt-srba has been moved out of MRPT and now is an
667 independent project: https://github.com/MRPT/srba
668  - \ref mrpt_base_grp
669  - mrpt::math::KDTreeCapable::TKDTreeSearchParams: Removed parameter
670 nChecks, which was ignored by nanoflann anyway.
671  - \ref mrpt_hwdrivers_grp
672  - mrpt::hwdrivers::CCameraSensor: Implemented OpenNI2 support for
673 CCameraSensor
674  - \ref mrpt_nav_grp
675  - mrpt::nav::CAbstractPTGBasedReactive: Maximum acceleration filter
676 (SPEEDFILTER_TAU) now follows paths better (Thanks to Steven Butner, UCSB/ECE)
677  - Changes in build system:
678  - `FIND_PACKAGE(MRPT)` will return libraries in the var
679 `MRPT_LIBRARIES`, following the CMake convention. The old variable name
680 `MRPT_LIBS` will be also returned for backward compatibility.
681  - BUG FIXES:
682  - Fix excessive width of paths drawn by
683 CMetricMapBuilderRBPF::drawCurrentEstimationToImage()
684  - Fix image distortion: k3 may be ignored. (Thanks to CBaiz)
685  - Fix Debian bugs.
686 
687 <hr>
688 <a name="1.3.1">
689  <h2>Version 1.3.1: Released 18-JUL-2015 </h2></a>
690  - Changes in apps:
691  -
692 [navlog-viewer](http://www.mrpt.org/list-of-mrpt-apps/application-navlog-viewer/):
693 Now shows more information on navigation logs.
694  - New app
695 [icp-slam-live](http://www.mrpt.org/list-of-mrpt-apps/application-icp-slam-live/):
696 Real-time ICP-SLAM with a LIDAR sensor.
697  - Changes in libraries:
698  - \ref mrpt_base_grp
699  - New helper templates: mrpt::utils::int_select_by_bytecount<>,
700 mrpt::uint_select_by_bytecount<>
701  - New methods to evaluate SO(2), SO(3), SE(2) and SE(3) averages and
702 weighted averages. See:
703  - Header <mrpt/poses/SO_SE_average.h>
704  - mrpt::poses::SO_average<2>, mrpt::poses::SO_average<3>
705  - mrpt::poses::SE_average<2>, mrpt::poses::SE_average<3>
706  - \ref mrpt_hwdrivers_grp
707  - New sensors supported:
708  - mrpt::hwdrivers::CIMUIntersense
709  - mrpt::hwdrivers::CSkeletonTracker
710  - New parameter
711 mrpt::hwdrivers::CHokuyoURG::m_disable_firmware_timestamp to override faulty
712 Hokuyo timestamps with PC time.
713  - mrpt::hwdrivers::CRoboPeakLidar::turnOn() and turnOff() now really
714 implement turning on/off the RPLidar motor.
715  - \ref mrpt_maps_grp
716  - New method mrpt::maps::COccupancyGridMap2D::getAsPointCloud()
717  - \ref mrpt_nav_grp
718  - Removed old base class CPathPlanningMethod
719  - CPathPlanningCircularRobot => mrpt::nav::PlannerSimple2D: Class
720 renamed (and better described) for consistency with other planners
721  - mrpt::nav::CReactiveNavigationSystem:
722  - Documentation has been added about all existing parameters,
723 and template config files provided as starting points.
724  - The loadConfigFile() method with 2 config files has been
725 deprecated favoring the newer, simpler single config file.
726  - The "ROBOT_NAME" parameter is no longer employed. A minor side
727 effect (probably affecting no one) is that PTG cache files are no longer named
728 differently for different robots.
729  - mrpt::nav::CParameterizedTrajectoryGenerator: New methods to save
730 and load trajectories to binary streams. Used to debug in navlog-viewer.
731  - \ref mrpt_obs_grp
732  - mrpt::obs::CObservation3DRangeScan now supports pixel labels
733 (semantic mapping, etc.)
734  - New class mrpt::obs::CObservationSkeleton to hold body tracking
735 information (by Francisco Angel Moreno)
736  - mrpt::obs::CObservationIMU has new data fields and fields are
737 better documented to reflect whether they refer to local/global coordinate
738 frames
739  - \ref mrpt_vision_grp
740  - mrpt::vision::CImageGrabber_dc1394: Changed default Bayer filter
741 from NEAREST to HQLINEAR
742  - BUG FIXES:
743  - Fix ocasional (false) failure of RANSAC unit tests due to their
744 non-deterministic nature.
745  - Fix build error with MSVC 2010 in mrpt-hmtslam (Closes #127).
746  - Fixed potential wrong bounding box results in
747 mrpt::maps::CPointsMap::boundingBox() when SSE2 optimization is enabled.
748  - mrpt::obs::CObservation6DFeatures: Fixed random crashes related to
749 non-aligned memory in 32bit builds (Fixes #141)
750  - Fix Debian bug
751 [#786349](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786349) on Eigen2
752 support.
753  - mrpt::hwdrivers::CIMUXSens_MT4: Fix crash in destructor of objects
754 not attached to a physical device.
755  - Fix wrong quaternion cross product when target variable is one of
756 the operands. Also affected the += operator of mrpt::poses::CPose3DQuat (Fixes
757 #148)
758  - mrpt::hwdrivers::CKinect with libfreenect driver: Fix potential
759 memory corruption.
760  - Fix a bug in mrpt::tfest::se3_l2_robust() that led to it returning
761 without trying to find a good consensus solution. It affected the demo app
762 kinect-3d-slam (Fixes #156)
763  - Fix wrong feature points in
764 CFeatureExtraction::extractFeaturesKLT() (Fixes #138)
765 
766 <hr>
767 <a name="1.3.0">
768  <h2>Version 1.3.0: Released 12-JAN-2015 </h2></a>
769  - <b>Most important changes:</b>
770  - Classes in libraries \ref mrpt_obs_grp and \ref mrpt_maps_grp now
771 belong to new namespaces (mrpt::obs, mrpt::maps) instead of the old mrpt::slam
772  - No more `using namespace`s polute MRPT headers. <b>Errors in user
773 projects</b> missing `using namespace XXX` that might be formerly masked will
774 now reveal. <b>This is a good thing</b>, though admitedly annoying...
775  - New library \ref mrpt_nav_grp, subsumming the old \ref
776 mrpt_reactivenav_grp.
777  - New library \ref mrpt_tfest_grp, a refactor of the old \ref
778 mrpt_scanmatching_grp.
779  - <b>Backwards compatible headers</b> have been provided to ease the
780 transition of user code for all those library changes. Warning messages will be
781 shown recommending deprecated replacements.
782  - <b>Detailed list of changes:</b>
783  - Lib changes:
784  - Clean up of the bad practice of `using namespace` in public scopes
785 of headers. May lead to user code failing for missing `using namespace`s which
786 were previously masked.
787  - Namespace "slam" deprecated in libraries mrpt-obs and mrpt-maps
788 (used for historical reasons):
789  - New namespaces \ref mrpt_obs_grp and \ref mrpt_maps_grp.
790  - #include files moved from old paths <mrpt/slam/...> =>
791 <mrpt/{obs,maps}/...>
792  - Backward compatible headers added in <mrpt/slam/...> until
793 mrpt 2.0.0
794  - New library \ref mrpt_nav_grp, subsumming the old mrpt-reactivenav
795 (\ref mrpt_reactivenav_grp).
796  - \ref mrpt_reactivenav_grp is now a meta-library, depending on \ref
797 mrpt_nav_grp.
798  - \ref mrpt_tfest_grp : Old library mrpt-scanmatching (\ref
799 mrpt_scanmatching_grp) has been refactored, its API clean-up, and renamed \ref
800 mrpt_tfest_grp
801  - \ref mrpt_scanmatching_grp is now a meta-library, depending on
802 \ref mrpt_tfest_grp.
803  - These classes have been moved between libs for a more sensible
804 organization:
805  - mrpt::slam::CDetectorDoorCrossing ==>
806 mrpt::detectors::CDetectorDoorCrossing
807  - mrpt::slam::CPathPlanningMethod & CPathPlanningCircularRobot:
808 \ref mrpt_slam_grp ==> \ref mrpt_nav_grp
809  - Build System / General changes:
810  - Many optimizations in function arguments (value vs ref). Forces
811 ABI incompatibility with previous versions, hence the change to a new minor
812 version number.
813  - Updated embedded version of Eigen to 3.2.3
814  - Kinect: Dropped support for the CL NUI API, which seems
815 discontinued. Alternatives in use are libfreenect and OpenNI2.
816  - libfreenect is now detected in the system and used instead of
817 compiling the embedded copy of it.
818  - Embedded copy of libfreenect has been updated to (23/oct/2014). It
819 now supports "Kinect for Windows".
820  - More selective linking of .so files to avoid useless dependencies
821 (Fixes #52).
822  - (Windows only) MRPT can now be safely built with libusb support
823 (Freenect, Kinect,...) and it will run on systems without libusb installed, by
824 means of /DELAYLOAD linking flags.
825  - More unit tests.
826  - Changes in classes:
827  - [mrpt-base]
828  - New function mrpt::math::angDistance()
829  - [mrpt-hwdrivers]
830  - mrpt::hwdrivers::CIMUXSens_MT4: (by Joe Burmeister for Suave
831 Aerial Software)
832  - Upgrade to latest XSens SDK 4.2.1. Requires libudev-dev in
833 Linux
834  - Add GPS observations to CIMUXSens_MT4 for Xsens devices
835 like GTi-G-700 which have GPS
836  - mrpt::hwdrivers::CImageGrabber_dc1394: Length of ring buffer
837 is now configurable via TCaptureOptions_dc1394::ring_buffer_size
838  - [mrpt-maps]
839  - Important refactor of internal code related to
840 mrpt::maps::CMultiMetricMap:
841  - All maps (derived from mrpt::maps::CMetricMap) now have a
842 more uniform interface.
843  - Each map now has a `MapDefinition` structure with all its
844 parameters. See docs for mrpt::maps::TMetricMapInitializer
845  - Introduced mrpt::maps::TMapGenericParams to hold
846 parameters shared in all maps.
847  - [mrpt-obs]
848  - CObservation::getDescriptionAsText(): New virtual method to
849 obstain a textual description of observations. Refactoring of messy code
850 previously in the RawLogViewer app.
851  - [mrpt-vision]
852  - mrpt::vision::CFeatureExtraction: Removed (unused) optional
853 ROI parameter in detectors.
854  - BUG FIXES:
855  - mrpt::poses::CRobot2DPoseEstimator could estimate wrong angular
856 velocities for orientations near +-180deg.
857  - mrpt::system::CDirectoryExplorer::sortByName() didn't sort in
858 descending order
859  - Fixed crashes from MATLAB .mex files:
860 mrpt::system::registerFatalExceptionHandlers() has no longer effect, and will be
861 removed in future releases. (Thanks to JesĆŗs Briales GarcĆ­a for all the
862 testing!)
863  - Fixed potential crash for Eigen unaligned memory access in 32bit
864 builds in mrpt::slam::CGridMapAligner and other places ([Closes
865 #94](https://github.com/MRPT/mrpt/issues/94))
866 
867 <hr>
868 <a name="1.2.2">
869  <h2>Version 1.2.2: Released 12-SEP-2014 </h2></a>
870  - Changes in apps:
871  - <a
872 href="http://www.mrpt.org/list-of-mrpt-apps/application-sceneviewer3d/"
873 >SceneViewer3D</a>:
874  - New menu "File" -> "Import" -> "3D model" which supports many
875 standard formats (via mrpt::opengl::CAssimpModel)
876  - New classes:
877  - [mrpt-hwdrivers]
878  - mrpt::hwdrivers::CRoboPeakLidar to interface Robo Peak LIDAR
879 scanners.
880  - [mrpt-opengl]
881  - mrpt::opengl::CAssimpModel for rendering complex 3D models (many
882 supported formats) in OpenGL scenes.
883  - Changes in classes:
884  - Consistency in all "laser scan" classes: angular increments between
885 rays are now FOV/(N-1) instead of FOV/N.
886  - [mrpt-base]
887  - New method mrpt::img::CImage::loadTGA()
888  - *IMPORTANT*: Changed behavior of CSerializable/CObject macros (see
889 bugfix below), introducing the new macros DEFINE_SERIALIZABLE_POST_*. May
890 require changes in user code if serializable classes are defined:
891  - Previous version:
892  \code
893  DEFINE_SERIALIZABLE_PRE_*(...)
894  class XXX {
895  DEFINE_SERIALIZABLE(XXX)
896  };
897  \endcode
898  - Must be changed in this version to:
899  \code
900  DEFINE_SERIALIZABLE_PRE_*(...)
901  class XXX {
902  DEFINE_SERIALIZABLE(XXX)
903  };
904  DEFINE_SERIALIZABLE_POST_*(...)
905  \endcode
906  - [mrpt-hwdrivers]
907  - Bumblebee2 Linux support in
908 mrpt::hwdrivers::CImageGrabber_FlyCapture2 via Triclops (by Jesus Briales)
909  - [mrpt-maps]
910  - New method mrpt::maps::COccupancyGridMap2D::getRawMap()
911  - New method
912 mrpt::maps::CColouredPointsMap::getPCLPointCloudXYZRGB()
913  - [mrpt-opengl]
914  - mrpt::opengl::CWxGLCanvasBase (affects all 3D rendering classes):
915 better handling of internal timers for smoother updates while rendering in
916 multithreading apps.
917  - [mrpt-srba]
918  - New method to recover the global coordinates graph-slam problem
919 for a RBA map: mrpt::srba::RbaEngine::get_global_graphslam_problem() (see
920 example
921 [MRPT]\samples\srba-examples\srba-tutorials\tutorial-srba-how-to-recover-global-map.cpp)
922  - BUG FIXES:
923  - mrpt::img::CImage constructor from a matrix crashed.
924  - Unit tests: Named semaphores are not tested anymore if it's detected
925 that the kernel version doesn't support them (Fix Debian 758725).
926  - mrpt::synch::CSemaphore [Linux]: didn't call sem_unlink().
927  - mrpt::gui::CDisplayWindow3D didn't implement get/set FOV.
928  - Valgrind: Fixed potential unaligned memory access warning in point
929 clouds.
930  - Fix build error with AppleClang 5.1 (Closes #71).
931  - mrpt::utils::CClientTCPSocket: Use a connection success check that
932 works on all platforms
933  - Important bug fixed regarding a missing dynamic_cast<> in smart
934 pointers casting. See above possible implications in user code. properly (Patch
935 by Joe Burmeister).
936 
937 <hr>
938 <a name="1.2.1">
939  <h2>Version 1.2.1: Released 10-JUL-2014 </h2></a>
940  - Changes in classes:
941  - [mrpt-base]
942  - All points and poses now have a method setToNaN(), e.g.
943 mrpt::poses::CPose3D::setToNaN()
944  - [mrpt-hwdrivers]
945  - mrpt::hwdrivers::COpenNI2Sensor now has better support for opening
946 several RGBD cameras (by Kenzaburo Miyawaki & Eduardo Fernandez)
947  - Build system:
948  - Fix compilation of SRBA with DEBUG_GARBAGE_FILL_ALL_NUMS=1
949  - Fix de-serialization error in mrpt::reactivenav::CLogFileRecord (and
950 new unit tests added to avoid regressions).
951  - Several Debian bugs closed (see packaging/debian/changelog), including
952 build errors in uncommon platforms (MIPS, kFreeBSD, etc.)
953 
954 <hr>
955 <a name="1.2.0">
956  <h2>Version 1.2.0: Released 25-JUN-2014 </h2></a>
957  - <b>Most important changes:</b>
958  - Public header files (.h) have undergone a serious refactoring to
959 minimize unnecesary dependencies and reduce compile time and memory as much as
960 possible. As a side effect, user code might need to add new #include<> lines.
961 This change justifies the new minor version series 1.2.X.
962  - MRPT now cleanly builds in clang and OSX.
963  - Support for new camera drivers (OpenNI2, DUO3D).
964  - Many bug fixes.
965  - <b>Detailed list of changes:</b>
966  - Changes in apps:
967  - [rawlog-edit](http://www.mrpt.org/Application%3Arawlog-edit):
968  - New operations: --export-odometry-txt, --recalc-odometry
969  - New flag: --rectify-centers-coincide
970  - New examples:
971  - kitti_dataset2rawlog
972  - New classes:
973  - [mrpt-base]
974  - mrpt::math::ContainerType<CONTAINER>::element_t to allow
975 handling either Eigen or STL containers seamlessly.
976  - mrpt::config::CConfigFilePrefixer
977  - [mrpt-hwdrivers]
978  - mrpt::hwdrivers::COpenNI2Sensor: Interface to OpenNI2 cameras,
979 capable of reading from an array of OpenNI2 RGBD cameras (By Eduardo Fernandez)
980  - mrpt::hwdrivers::CDUO3DCamera: Interface to DUO3D cameras (By
981 Francisco Angel Moreno)
982  - mrpt::hwdrivers::CGPS_NTRIP: A combination of GPS receiver +
983 NTRIP receiver capable of submitting GGA frames to enable RTCM 3.0
984  - [mrpt-obs]
985  - mrpt::obs::CObservation6DFeatures
986  - Changes in classes:
987  - [mrpt-base]
988  - Robust kernel templates moved from mrpt::vision to mrpt::math.
989 See mrpt::math::RobustKernel<>. Added unit tests for robust kernels.
990  - mrpt::poses::CPose3D has new SE(3) methods:
991 mrpt::poses::CPose3D::jacob_dexpeD_de(),
992 mrpt::poses::CPose3D::jacob_dAexpeD_de()
993  - More efficient mrpt::utils::OctetVectorToObject() (avoid
994 memory copy).
995  - Fixed const-correctness of mrpt::img::CImage::forceLoad() and
996 mrpt::img::CImage::unload()
997  - [mrpt-hwdrivers]
998  - mrpt::hwdrivers::CCameraSensor: Added a hook for user code to
999 run before saving external image files:
1000 mrpt::hwdrivers::CCameraSensor::addPreSaveHook()
1001  - mrpt::hwdrivers::CNationalInstrumentsDAQ now supports analog
1002 and digital outputs.
1003  - New method mrpt::hwdrivers::CNTRIPClient::sendBackToServer()
1004  - [mrpt-srba]
1005  - Now also implements SE(3) relative graph-slam.
1006  - [mrpt-vision]
1007  - mrpt::vision::checkerBoardStereoCalibration: More robust
1008 handling of stereo calibration patterns. OpenCV sometimes detects corners in the
1009 wrong order between (left/right) images, so we detect the situation and fix it.
1010  - mrpt::vision::findMultipleChessboardsCorners():
1011  - Now enforces a consistent counterclockwise XYZ coordinate
1012 frame at each detected chessboard.
1013  - Much more robust in distingishing quads of different
1014 sizes.
1015  - Build system / public API:
1016  - Fixes to build in OS X -
1017 [Patch](https://gist.github.com/randvoorhies/9283072) by Randolph Voorhies.
1018  - Removed most "using namespace" from public headers, as good
1019 practice.
1020  - Refactoring of MRPT headers.
1021  - <mrpt/utils/stl_extensions.h> has been split into:
1022  - <mrpt/serialization/stl_serialization.h>
1023  - <mrpt/containers/circular_buffer.h>
1024  - <mrpt/utils/list_searchable.h>
1025  - <mrpt/containers/bimap.h>
1026  - <mrpt/utils/map_as_vector.h>
1027  - <mrpt/containers/traits_map.h>
1028  - <mrpt/serialization/stl_serialization.h>
1029  - <mrpt/containers/printf_vector.h>
1030  - <mrpt/containers/stl_containers_utils.h>
1031  - <mrpt/utils/ci_less.h>
1032  - Deleted methods and functions:
1033  - mrpt::system::breakpoint()
1034  - mrpt::vector_float is now mrpt::math::CVectorFloat,
1035 mrpt::vector_double is mrpt::math::CVectorDouble, for name consistency. Also,
1036 using Eigen::VectorXf is preferred for new code.
1037  - mrpt::CImage::rectifyImage() with parameters as separate
1038 vectors.
1039  - mrpt::maps::CPointsMap::getPoint() with mrpt::poses::CPoint3D
1040 arguments.
1041  - mrpt::vision::correctDistortion() -> use CImage method instead
1042  - All previous deprecated functions.
1043  - Embedded Eigen updated to version 3.2.1
1044 [(commit)](https://github.com/MRPT/mrpt/commit/47913da94a27e98a9115f85b2a530b6c14a10b8f)
1045 [(commit)](https://github.com/MRPT/mrpt/commit/33258761d3b75bf133d38aecb257c64e4d76b21e)
1046  - BUG FIXES:
1047  - RawlogViewer app: Fixed abort while converting SF->obs.only
1048 datasets when there is no odometry.
1049  - mrpt::obs::CSensoryFrame: The cached point map is now invalidated
1050 with any change to the list of observations so it's rebuild upon next call.
1051  - New implementation of mrpt::synch::CSemaphore avoids crashes in OS
1052 X - by Randolph Voorhies.
1053  - mrpt::opengl::CArrow was always drawn of normalized length.
1054  - FlyCapture2 monocular & stereo cameras could return an incorrect
1055 timestamp (only in Linux?).
1056  - mrpt::system::createDirectory() returned false (error) when the
1057 directory already existed.
1058  - mrpt::vision::CStereoRectifyMap::rectify() didn't update the left
1059 & right camera poses inside mrpt::obs::CObservationStereoImages objects while
1060 rectifying.
1061  - RawLogViewer: Operation "convert to SF format" didn't take into
1062 account odometry observations.
1063  - Fix build errors with GCC 4.9
1064  - Fix crash of mrpt::hwdrivers::CIMUXSens_MT4's destructor when it
1065 fails to scan and open a device.
1066  - Fix potential crash in
1067 mrpt::slam::data_association_full_covariance with JCBB when no individually
1068 compatible matching exists
1069 [(commit)](https://github.com/MRPT/mrpt/commit/482472ebd80a3484dce63d294b1ac4e8f001e1eb)
1070 
1071 <hr>
1072  <a name="1.1.0">
1073  <h2>Version 1.1.0: Released 22-FEB-2014 </h2></a>
1074  - New apps:
1075  -
1076 [DifOdometry-Camera](http://www.mrpt.org/list-of-mrpt-apps/application-difodometry-camera).
1077 (By Mariano Jaimez Tarifa)
1078  -
1079 [DifOdometry-Datasets](http://www.mrpt.org/list-of-mrpt-apps/application-difodometry-datasets).
1080 (By Mariano Jaimez Tarifa)
1081  - New classes:
1082  - [mrpt-base]
1083  - mrpt::synch::CPipe: OS-independent pipe support.
1084  - [mrpt-hwdrivers]
1085  - mrpt::hwdrivers::CIMUXSens_MT4 : Support for 4th generation xSens
1086 MT IMU devices.
1087  - mrpt::hwdrivers::CNationalInstrumentsDAQ: Support for acquisition
1088 boards compatible with National Instruments DAQmx Base -
1089 [(commit)](https://github.com/MRPT/mrpt/commit/a82a7e37997cfb77e7ee9e903bdb2a55e3040b35).
1090  - mrpt::hwdrivers::CImageGrabber_FlyCapture2: Support for Point Grey
1091 Research's cameras via the FlyCapture2 libray -
1092 [(commits)](https://github.com/MRPT/mrpt/pull/5/commits).
1093  - [mrpt-maps]
1094  - There are now two versions of octomaps (by Mariano Jaimez
1095 Tarifa/Jose Luis Blanco) -
1096 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3443)
1097  - mrpt::maps::COctoMap (only occupancy)
1098  - mrpt::maps::CColouredOctoMap (occupancy + RGB color)
1099  - [mrpt-obs]
1100  - mrpt::obs::CObservationRawDAQ, a placeholder for raw and generic
1101 measurements from data acquisition devices. -
1102 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3459)
1103  - [mrpt-opengl]
1104  - mrpt::opengl::CMeshFast, an open gl object that draws a "mesh" as
1105 a structured point cloud which is faster to render (by Mariano Jaimez Tarifa).
1106 -[(commit)](https://github.com/MRPT/mrpt/commit/9306bb4a585387d4c85b3f6e41dd2cbe5a354e80)
1107  - mrpt::opengl::CVectorField2D, an opengl object that shows a 2D
1108 Vector Field (by Mariano Jaimez Tarifa). -
1109 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3461)
1110  - [mrpt-reactivenav]
1111  - mrpt::reactivenav::CAbstractPTGBasedReactive, as part of a large
1112 code refactoring of these classes:
1113 [(commit)](https://github.com/MRPT/mrpt/pull/4)
1114  - mrpt::reactivenav::CReactiveNavigationSystem
1115  - mrpt::reactivenav::CReactiveNavigationSystem3D
1116  - [mrpt-vision]
1117  - mrpt::vision::CDifodo, a class which implements visual odometry
1118 based on depth images and the "range flow constraint equation". (by Mariano
1119 Jaimez Tarifa) -
1120 [(commit)](https://github.com/MRPT/mrpt/commit/e6ab5595f70cb889d07658c0b540c27e495a1cfb)
1121  - Changes in classes:
1122  - Clean up and slight optimization of metric map matching API: -
1123 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3446)
1124  - <b>Methods marked as deprecated: </b>
1125  - mrpt::maps::CMetricMap::computeMatchingWith2D() -->
1126 mrpt::maps::CMetricMap::determineMatching2D()
1127  - mrpt::maps::CMetricMap::computeMatchingWith3D() -->
1128 mrpt::maps::CMetricMap::determineMatching3D()
1129  - New structures:
1130  - mrpt::slam::TMatchingParams
1131  - mrpt::slam::TMatchingExtraResults
1132  - mrpt::maps::CPointsMap::TInsertionOptions now have methods to
1133 save/load from binary streams, making more maintainable the serialization of
1134 point maps -
1135 [(commit)](https://github.com/MRPT/mrpt/commit/544d439c3462228b07344142de68e5bc10c1a2e3)
1136  - New options in point maps:
1137 mrpt::maps::CPointsMap::TInsertionOptions::insertInvalidPoints -
1138 [(commit)](https://github.com/MRPT/mrpt/pull/8)
1139  - mrpt::obs::CObservationIMU now includes data fields for 3D
1140 magnetometers and altimeters. -
1141 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3451)
1142  - Method renamed mrpt::utils::CEnhancedMetaFile::selectVectorTextFont()
1143 to avoid shadowing mrpt::CCanvas::selectTextFont()
1144  - mrpt::reactivenav::CParameterizedTrajectoryGenerator: New methods:
1145  -
1146 mrpt::reactivenav::CParameterizedTrajectoryGenerator::inverseMap_WS2TP() for
1147 inverse look-up of WS to TP space -
1148 [(commit)](https://github.com/MRPT/mrpt/commit/4d04ef50e3dea581bed6287d4ea6593034c47da3)
1149  -
1150 mrpt::reactivenav::CParameterizedTrajectoryGenerator::renderPathAsSimpleLine() -
1151 [(commit)](https://github.com/MRPT/mrpt/commit/a224fc2489ad00b3ab116c84e8d4a48532a005df)
1152  - Changed the signature of
1153 mrpt::reactivenav::build_PTG_collision_grids() to become more generic for 2D
1154 & 2.5D PTGs -
1155 [(commit)](https://github.com/MRPT/mrpt/commit/7bd68e49a4ba3bf08f194678787816c65de1d685)
1156  - Deleted classes:
1157  - mrpt::utils::CEvent, which was actually unimplemented (!)
1158  - mrpt::hwdrivers::CInterfaceNI845x has been deleted. It didn't offer
1159 features enough to justify a class.
1160  - New examples:
1161  - [MRPT]/samples/threadsPipe
1162  - [MRPT]/samples/NIDAQ_test
1163  - [MRPT]/openNI2_RGBD_demo (by Mariano Jaimez Tarifa)
1164  - [MRPT]/openNI2_proximity_demo (by Mariano Jaimez Tarifa)
1165  - Build system:
1166  - Fixed compilation with clang.
1167  - Fixed building against OpenCV 3.0.0 (GIT head)
1168  - Updated to the latest nanoflann 1.1.7.
1169  - Updated to Eigen 3.2.0 -
1170 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3455)
1171  - Binary packages for Windows now include .pdb files to help debugging
1172 with Visual Studio.
1173  - BUG FIXES:
1174  - Fixed potential infinity loop in mrpt::math::make_vector<1,T>()
1175  - Fixed build error with GCC when experimental parallelization is
1176 enabled. [(commit)](http://code.google.com/p/mrpt/source/detail?r=3441)
1177  - mrpt::reactivenav::CReactiveNavigationSystem complained about missing
1178 config variables ROBOTMODEL_TAU & ROBOTMODEL_DELAY, which were removed in
1179 MRPT 1.0.2 - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3452)
1180  - Fixed potential mem alignment errors (Eigen's UnalignedArrayAssert) in
1181 SRBA for 32bit builds.
1182 [(commit)](http://code.google.com/p/mrpt/source/detail?r=3457)
1183  - mrpt::topography::geodeticToENU_WGS84() and related functions used a
1184 local +Z axis aligned to the line towards the Earth center; now the Z axis
1185 points normally to the ellipsoid surface. The difference with the previous
1186 behavior is small but may be of a few millimeters for each meter from the
1187 reference point. [(commit)](http://code.google.com/p/mrpt/source/detail?r=3473)
1188  - Potential crash when setting mpPolygon::setPoints() with empty vectors
1189 - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3478)
1190  - mrpt::reactivenav::CReactiveNavigationSystem and
1191 mrpt::reactivenav::CReactiveNavigationSystem3D didn't obey the
1192 "enableConsoleOutput" constructor flag -
1193 [(commit)](https://github.com/MRPT/mrpt/commit/db7b0e76506af2c24f119a28443a1e8f1a217861)
1194  - mrpt::synch::CSemaphore::waitForSignal() : Fixed error when thread got
1195 an external signal
1196 [(commit)](https://github.com/MRPT/mrpt/commit/511e95f03480537ff18ad2cad178c504b1cfbb53)
1197 
1198  <hr>
1199  <a name="1.0.2">
1200  <h2>Version 1.0.2: Released 2-AUG-2013 (SVN 3435) </h2></a>
1201  - New apps:
1202  -
1203 [ReactiveNav3D-Demo](http://www.mrpt.org/Application%3AReactiveNav3D-Demo) (By
1204 Mariano Jaimez Tarifa)
1205  - Changes in apps:
1206  - [rawlog-edit](http://www.mrpt.org/Application%3Arawlog-edit):
1207  - New operations: --list-timestamps, --remap-timestamps,
1208 --export-2d-scans-txt, --export-imu-txt
1209  - New classes:
1210  - [mrpt-base]
1211  - mrpt::poses::CPose3DRotVec is now fully implemented (By Francisco
1212 Angel Moreno).
1213  - [mrpt-opengl]
1214  - mrpt::opengl::CLight - OpenGL scenes now allow customization of
1215 OpenGL lighting. See also new lighting methods in mrpt::opengl::COpenGLViewport
1216 - <a href="http://code.google.com/p/mrpt/source/detail?r=3409" >r3409</a>
1217  - [mrpt-reactivenav]
1218  - mrpt::reactivenav::CReactiveNavigationSystem3D - By Mariano Jaimez
1219 Tarifa - <a href="http://code.google.com/p/mrpt/source/detail?r=3389" >r3389</a>
1220  - New functions:
1221  - [mrpt-opengl]
1222  - mrpt::opengl::stock_objects::RobotRhodon()
1223  - Changes in classes:
1224  - [mrpt-base]
1225  - Generic particle filter classes now allow directly resampling to a
1226 dynamic number of particles. Affected methods: - <a
1227 href="http://code.google.com/p/mrpt/source/detail?r=3381" >r3381</a>
1228  - mrpt::bayes::CParticleFilterCapable::performResampling()
1229  - mrpt::bayes::CParticleFilterCapable::computeResampling()
1230  - New method: CImage::loadFromXPM() - <a
1231 href="http://code.google.com/p/mrpt/source/detail?r=3397" >r3397</a>
1232  - [mrpt-maps]
1233  - mrpt::maps::COctoMap now exposes the inner octomap::OcTree object.
1234 See example samples/octomap_simple - <a
1235 href="http://code.google.com/p/mrpt/source/detail?r=4304" >r4304</a>
1236  - [mrpt-openg]
1237  - mrpt::opengl::CBox now be also rendered as a solid box + line
1238 borders. See mrpt::opengl::CBox::enableBoxBorder()
1239  - mrpt::opengl::COctoMapVoxels - <a
1240 href="http://code.google.com/p/mrpt/source/detail?r=4329" >r4329</a>
1241  - Fixed calculation of normals (fix shading)
1242  - Added new coloring scheme to
1243 mrpt::opengl::COctoMapVoxels::visualization_mode_t : "FIXED"
1244  - By default, light effects are disabled in this object, because
1245 shadows aren't computed anyway and the effect isn't pleasant.
1246  - Voxels cubes are sorted in ascending Z order so the visual
1247 effect is correct when rendering with transparency.
1248  - [mrpt-reactivenav]
1249  - mrpt::reactivenav::CParameterizedTrajectoryGenerator: The "low
1250 pass filter" has been removed since it wasn't practical and was never used;
1251 thus, parameters "TAU" and "DELAY" has been removed. - <a
1252 href="http://code.google.com/p/mrpt/source/detail?r=3395" >r3395</a>
1253  - Methods removed since they weren't implemented in any derived
1254 class and there are no plans for doing it.
1255  - mrpt::reactivenav::CReactiveNavigationSystem ::evaluate()
1256  - mrpt::reactivenav::CReactiveNavigationSystem ::setParams()
1257  - Build system:
1258  - Updated to nanoflann 1.1.7: ICP is ~5% faster.
1259  - More unit tests:
1260  - [mrpt-base] geometry module.
1261  - BUG FIXES:
1262  - CTimeLogger::registerUserMeasure() ignored the enable/disable state of
1263 the logger - <a href="http://code.google.com/p/mrpt/source/detail?r=3382"
1264 >r3382</a>
1265  - mrpt-srba: SEGFAULT in 32bit builds due to missing
1266  - <a
1267 href="http://code.google.com/p/mrpt/source/detail?r=3429" >r3429</a>
1268 
1269  <br/>
1270  <hr>
1271  <a name="1.0.1">
1272  <h2>Version 1.0.1: Released 12-MAY-2013 (SVN 3370) </h2></a>
1273  - Changes in apps:
1274  - <a href="http://www.mrpt.org/Application%3ARawLogViewer"
1275 >RawLogViewer</a>:
1276  - Better description of the "too much memory used" warning while
1277 loading large datasets.
1278  - <a href="http://www.mrpt.org/Application%3Arobotic-arm-kinematics"
1279 >robotic-arm-kinematics</a>:
1280  - Now allows changing the orientation of the first DOF (X,Y,Z).
1281  - New classes:
1282  - [mrpt-hwdrivers]
1283  - mrpt::hwdrivers::CInterfaceNI845x: An interface for this USB
1284 SPI/I2C data acquisition board.
1285  - mrpt::hwdrivers::CCANBusReader: A class to record CAN bus frames
1286 with a CAN232 converter.
1287  - [mrpt-obs]
1288  - mrpt::obs::CObservationCANBusJ1939
1289  - New functions:
1290  - New opengl_stock objects:
1291  - mrpt::opengl::stock_objects::Hokuyo_URG()
1292  - mrpt::opengl::stock_objects::Hokuyo_UTM()
1293  - mrpt::opengl::stock_objects::Househam_Sprayer()
1294  - mrpt::math::saveEigenSparseTripletsToFile() - <a
1295 href="http://code.google.com/p/mrpt/source/detail?r=3351" >r3351</a>
1296  - New examples:
1297  - gmrf_map_demo
1298  - Changes in classes:
1299  - [mrpt-maps]
1300  - mrpt::maps::COccupancyGridMap2D now also evalutes likelihoods for
1301 sonar-like observations (mrpt::obs::CObservationRange), allowing particle-filter
1302 localization with these sensors - <a
1303 href="http://code.google.com/p/mrpt/source/detail?r=3330" >r3330</a>
1304  - New method
1305 mrpt::slam::CRandomFieldGridMap2D::insertIndividualReading()
1306  - [mrpt-kinematics]
1307  - mrpt::kinematics::CKinematicChain: Now allows changing the
1308 orientation of the first DOF (X,Y,Z).
1309  - Removed stuff:
1310  - Backwards-compatibility typedef mrpt::vision::TKLTFeatureStatus has
1311 been removed. Replace with mrpt::vision::TFeatureTrackStatus
1312  - KLT-specific values for mrpt::vision::TFeatureTrackStatus has been
1313 removed, since they were not used in detected features anyway.
1314  - Build system:
1315  - Fixed a potential build error if including FFMPEG's <time.h> instead
1316 of the standard header - <a
1317 href="http://code.google.com/p/mrpt/source/detail?r=3316" >r3316</a>
1318  - Fixed determination of GCC version for all GCC builds - <a
1319 href="http://code.google.com/p/mrpt/source/detail?r=3324" >r3324</a>
1320  - Updated to Eigen 3.1.3 - <a
1321 href="http://code.google.com/p/mrpt/source/detail?r=3349" >r3349</a>
1322  - Updated to nanoflann 1.1.5
1323  - BUG FIXES:
1324  - Unit tests "SchurTests" for mrpt-srba incorrectly reported errors due
1325 to an improperly initialized reference to a local variable - <a
1326 href="http://code.google.com/p/mrpt/source/detail?r=3318" >r3318</a>
1327  - Debian packages: added missing binary deps for libmrpt-dev - <a
1328 href="http://code.google.com/p/mrpt/source/detail?r=3335" >r3335</a>
1329 
1330  <hr>
1331  <a name="1.0.0">
1332  <h2>Version 1.0.0: Released 1-MAR-2013 (SVN 3287) </h2></a>
1333  - <b>Most important changes:</b>
1334  - New library with a flexible implementation of Sparser Relative Bundle
1335 Adjustment (RBA), as presented in ICRA 2013: <a href="http://www.mrpt.org/srba"
1336 >mrpt-srba</a>.
1337  - New library for Plane-based Maps: <a
1338 href="group__mrpt__pbmap__grp.html" >mrpt-pbmap</a> (also presented in ICRA
1339 2013).
1340  - Some MRPT modules are now header-only libraries.
1341  - Support for a new Octomap metric map, via the octomap library. See
1342 mrpt::maps::COctoMap and detailed changes below.
1343  - Support for importing/exporting point clouds in the standard LAS
1344 format (Look for liblas below).
1345  - Better support for custom builds of MRPT (selective building of
1346 individual apps and libs, etc.)
1347  - Ready for Visual Studio 2012 and GCC 4.7
1348  - From now on, MRPT is released under the "New BSD" license.
1349  - Many bug fixes.
1350  - <b>Detailed list of changes:</b>
1351  - New apps:
1352  - <a
1353 href="http://www.mrpt.org/list-of-mrpt-apps/application-srba-slam"
1354 >srba-slam</a>: A command-line frontend for the Relative Bundle Adjustment
1355 engine in mrpt-srba.
1356  - <a
1357 href="http://www.mrpt.org/list-of-mrpt-apps/application-holonomic-navigator-demo"
1358 >holonomic-navigator-demo</a>
1359  - <a
1360 href="http://www.mrpt.org/list-of-mrpt-apps/application-robotic-arm-kinematics"
1361 >robotic-arm-kinematics</a>: A GUI for experimenting with Denavit-Hartenberg
1362 parameters.
1363  - Changes in apps:
1364  - <a href="http://www.mrpt.org/Application%3Anavlog-viewer"
1365 >navlog-viewer</a>:
1366  - Fixed some minor visualization errors.
1367  - <a href="http://www.mrpt.org/Application%3ARawLogViewer"
1368 >RawLogViewer</a>:
1369  - Import sequence of images as rawlog: Didn't detect "png" file
1370 extension as images - <a
1371 href="http://code.google.com/p/mrpt/source/detail?r=2940" >r2940</a> - Closes <a
1372 href="http://code.google.com/p/mrpt/issues/detail?id=34" >#34</a>
1373  - The GUI toolbar has been ported from wxWidget's ToolBar to
1374 sets of wxCustomButton's to avoid visualization problems in wx 2.9.X - <a
1375 href="http://code.google.com/p/mrpt/source/detail?r=2950" >r2950</a>
1376  - <a
1377 href="http://www.mrpt.org/list-of-mrpt-apps/application-ReactiveNavigationDemo"
1378 >ReactiveNavigationDemo</a>:
1379  - The default holonomic navigation method is now the VFF, since
1380 after the last bug fixes and tunes it seems to work quite well.
1381  - <a href="http://www.mrpt.org/Application%3ASceneViewer"
1382 >SceneViewer3D</a>:
1383  - The GUI toolbar has been ported from wxWidget's ToolBar to
1384 sets of wxCustomButton's to avoid visualization problems in wx 2.9.X - <a
1385 href="http://code.google.com/p/mrpt/source/detail?r=2952" >r2952</a>
1386  - Added a new menu: "File -> Import -> From LAS file..." - <a
1387 href="http://code.google.com/p/mrpt/source/detail?r=3244" >r3244</a>
1388  - <a href="http://www.mrpt.org/Application%3Agrid-matching"
1389 >grid-matching</a>: new argument "--aligner" to select aligner method - <a
1390 href="http://code.google.com/p/mrpt/source/detail?r=3021" >r3021</a>
1391  - New classes:
1392  - [mrpt-base]
1393  - mrpt::math::MatrixBlockSparseCols, a templated column-indexed
1394 efficient storage of block-sparse Jacobian or Hessian matrices, together with
1395 other arbitrary information - <a
1396 href="http://code.google.com/p/mrpt/source/detail?r=2995" >r2995</a>
1397  - mrpt::utils::ignored_copy_ptr<>
1398  - mrpt::system::CTimeLoggerEntry
1399  - [mrpt-obs]
1400  - mrpt::obs::CObservationWindSensor - <a
1401 href="http://code.google.com/p/mrpt/source/detail?r=3050" >r3050</a>
1402  - [mrpt-maps]
1403  - mrpt::maps::COctoMap
1404  - [mrpt-opengl]
1405  - mrpt::opengl::COctoMapVoxels
1406  - Deleted classes:
1407  - [mrpt-vision]
1408  - CFeatureTracker_FAST and CFeatureTracker_PatchMatch have been
1409 removed since they didn't work robustly. Replace with
1410 mrpt::vision::CFeatureTracker_KL
1411  - New libraries:
1412  - [mrpt-kinematics] See mrpt::kinematics
1413  - [mrpt-pbmap] See <a href="group__mrpt__pbmap__grp.html"
1414 >mrpt-pbmap</a>.
1415  - [mrpt-srba] See <a href="http://www.mrpt.org/srba" >mrpt-srba</a>.
1416  - Changes in libraries:
1417  - These libs are now header-only: <a
1418 href="http://code.google.com/p/mrpt/source/detail?r=3035" >r3035</a>, <a
1419 href="http://code.google.com/p/mrpt/source/detail?r=3045" >r3045</a>
1420  - [mrpt-bayes]
1421  - [mrpt-graphs]
1422  - [mrpt-graphslam]
1423  - Integration of the Octomap C++ library (new BSD License) by Kai M.
1424 Wurm et al.: <a href="http://code.google.com/p/mrpt/source/detail?r=3081"
1425 >r3081</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3083"
1426 >r3083</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3084"
1427 >r3084</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3086"
1428 >r3086</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3087"
1429 >r3087</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3088"
1430 >r3088</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3093"
1431 >r3093</a>
1432  - The main new classes are mrpt::maps::COctoMap &
1433 mrpt::opengl::COctoMapVoxels
1434  - mrpt::maps::CMultiMetricMap now allows the seamless
1435 integration of octomaps in many MRPT map building or localization algorithms.
1436  - New example: samples/octomap_simple
1437  - Changes in classes:
1438  - [mrpt-base]
1439  - Eigen::MatrixBase<Derived>::loadFromTextFile(), and all MRPT
1440 derived matrix classes, are now much faster loading huge matrices from text
1441 files - <a href="http://code.google.com/p/mrpt/source/detail?r=2997" >r2997</a>
1442  - The typedef Eigen::MatrixBase<Derived>::typename of MRPT's
1443 plugin to Eigen classes has been REMOVED, to avoid conflicts with some part of
1444 Eigen's sparse classes. Use Matrix::Scalar instead - <a
1445 href="http://code.google.com/p/mrpt/source/detail?r=3065" >r3065</a>
1446  - New method mrpt::poses::CPose3DQuat::inverse()
1447  - New methods mrpt::poses::SE_traits::pseudo_exp()
1448  - mrpt::system::CTimeLogger:
1449  - New method mrpt::system::CTimeLogger::getStats() for
1450 programatic execution time stats analysis - <a
1451 href="http://code.google.com/p/mrpt/source/detail?r=2998" >r2998</a>
1452  - New method
1453 mrpt::system::CTimeLogger::registerUserMeasure() for making stats of
1454 user-providen values - <a
1455 href="http://code.google.com/p/mrpt/source/detail?r=3005" >r3005</a>
1456  - mrpt::utils::map_as_vector<> can be now customized to use
1457 different underlying STL containers for storage - <a
1458 href="http://code.google.com/p/mrpt/source/detail?r=3001" >r3001</a>
1459  - mrpt::containers::CDynamicGrid::setSize() now also accepts a
1460 "fill_value" argument.
1461  - Added method mrpt::math::TPoint2D::norm() for consistency with
1462 mrpt::math::TPoint3D
1463  - Better support for saving (and not only loading) plain text
1464 configuration files, including commented files with default values of all
1465 existing parameters: - <a
1466 href="http://code.google.com/p/mrpt/source/detail?r=2954" >r2954</a>
1467  - All mrpt::config::CConfigFileBase::write() now have an
1468 extended signature for formatting.
1469  -
1470 mrpt::config::CLoadableOptions::dumpToTextStreamstd::ostream::Seek() now
1471 supports files larger than 2GB by using uint64_t instead of long (still see
1472 issue report for another patch required for MSVC2010) - (Closes <a
1473 href="http://code.google.com/p/mrpt/issues/detail?id=39" >issue 39</a>, thanks
1474 Robert Schattschneider) - <a
1475 href="http://code.google.com/p/mrpt/source/detail?r=3042" >r3042</a>
1476  - mrpt::typemeta::TTypeName<> moved to its own header
1477 <mrpt/typemeta/TTypeName.h> while refactoring
1478 <mrpt/serialization/CSerializable.h>
1479 - <a href="http://code.google.com/p/mrpt/source/detail?r=3044" >r3044</a>
1480  - mrpt::config::CConfigFileBase::write() now has signatures for
1481 "uint32_t" and "uint64_t" in both 32 and 64bit builds, instead of relying of the
1482 "size_t" type. This was done to fix build errors in some GCC versions under
1483 32bits.
1484  - mrpt::poses::CPose2D now caches the cos() and sin() of phi,
1485 with a huge performance improvement in most common operations.
1486  - [mrpt-bayes]
1487  - mrpt::bayes::CKalmanFilterCapable (and all EKF-SLAM methods
1488 based on it) are now much faster. The implementation now exploits the sparsity
1489 of the Jacobian (~25% faster in a test 6D EKF-SLAM dataset) - <a
1490 href="http://code.google.com/p/mrpt/source/detail?r=3059" >r3059</a>, <a
1491 href="http://code.google.com/p/mrpt/source/detail?r=3060" >r3060</a>, <a
1492 href="http://code.google.com/p/mrpt/source/detail?r=3061" >r3061</a>
1493  - mrpt::bayes::CParticleFilterCapable now makes use of the
1494 Curiously Recurring Template Pattern (CRTP) design instead of ugly #define
1495 macros - <a href="http://code.google.com/p/mrpt/source/detail?r=3182" >r3182</a>
1496  - [mrpt-graphs]
1497  - mrpt::graphs::CNetworkOfPoses2D,
1498 mrpt::graphs::CNetworkOfPoses3D,... and so on, are now all typedef's instead of
1499 classes, since serialization is now implemented as pure templatized code, thus
1500 avoiding the need to declare derived auxiliary classes - <a
1501 href="http://code.google.com/p/mrpt/source/detail?r=3044" >r3044</a>
1502  - [mrpt-gui]
1503  - mrpt::gui::CDisplayWindow3D::addTextMessage() (and other
1504 opengl text routines) now allows drawing text with a shadow effect - <a
1505 href="http://code.google.com/p/mrpt/source/detail?r=3007" >r3007</a>
1506  - [mrpt-hwdrivers]
1507  - New method
1508 mrpt::hwdrivers::CActivMediaRobotBase::areMotorsEnabled()
1509  - mrpt::hwdrivers::CGenericSensor (and all derived classes) now
1510 allocate objects aligned in memory with
1511  - New static method mrpt::hwdrivers::CGPSInterface::parse_NMEA()
1512  - [mrpt-maps]
1513  - Better integration of point cloud classes with PCL: - <a
1514 href="http://code.google.com/p/mrpt/source/detail?r=2943" >r2943</a>
1515  - mrpt::maps::CPointsMap::loadPCDFile()
1516  - mrpt::maps::CPointsMap::setFromPCLPointCloud()
1517  - mrpt::maps::CColouredPointsMap::setFromPCLPointCloudRGB()
1518  - Point cloud loading & saving in the standard ASPRS LiDAR LAS
1519 format (if liblas is installed in the system, see http://www.liblas.org/ ). See
1520 also the ready-to-use import menu in SceneViewer3D - <a
1521 href="http://code.google.com/p/mrpt/source/detail?r=3244" >r3244</a>
1522  - mrpt::maps::CPointsMap::loadLASFile()
1523  - mrpt::maps::CPointsMap::saveLASFile()
1524  - Integration of wind measurements in gas-concentration maps (by
1525 Javier G. Monroy) - <a href="http://code.google.com/p/mrpt/source/detail?r=3050"
1526 >r3050</a>
1527  - [mrpt-obs]
1528  - New method mrpt::obs::CObservationGPS::clear()
1529  - [mrpt-opengl]
1530  - Evaluation of bounding box of opengl objects. New methods: -
1531 <a href="http://code.google.com/p/mrpt/source/detail?r=3026" >r3026</a>
1532  - mrpt::opengl::CRenderizable::getBoundingBox()
1533  - mrpt::opengl::COpenGLScene::getBoundingBox()
1534  - mrpt::opengl::COpenGLViewport::getBoundingBox()
1535  -
1536 mrpt::opengl::COctreePointRenderer::octree_get_graphics_boundingboxes() has a
1537 new flag to draw solid boxes at each leaf node - <a
1538 href="http://code.google.com/p/mrpt/source/detail?r=3033" >r3033</a>
1539  - mrpt::opengl::COpenGLViewport has a new set of "global OpenGL
1540 switches" that affect the rendering of entire scenes - <a
1541 href="http://code.google.com/p/mrpt/source/detail?r=3185" >r3185</a>
1542  - Classes drawing lines now by default enable anti-aliasing (can
1543 be disabled by the programmer): - <a
1544 href="http://code.google.com/p/mrpt/source/detail?r=3185" >r3185</a>
1545  - mrpt::opengl::CGridPlaneXY, mrpt::opengl::CGridPlaneXZ
1546  - mrpt::opengl::CSimpleLine
1547  - mrpt::opengl::CSetOfLines
1548  - [mrpt-reactivenav]
1549  - Much code of mrpt::reactivenav classes have undergone a
1550 clean-up, slight optimizations and a translation of old Spanish names/comments
1551 to English - <a href="http://code.google.com/p/mrpt/source/detail?r=2939"
1552 >r2939</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=2942"
1553 >r2942</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=2958"
1554 >r2958</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3091"
1555 >r3091</a>
1556  -
1557 mrpt::reactivenav::CParameterizedTrajectoryGenerator::CCollisionGrid now has a
1558 more maintainable binary serialization format - <a
1559 href="http://code.google.com/p/mrpt/source/detail?r=2939" >r2939</a>
1560  -
1561 mrpt::reactivenav::CParameterizedTrajectoryGenerator::debugDumpInFiles() now
1562 also saves text files which can be used to visualize PTGs from MATLAB (see
1563 scripts/viewPTG.m) - <a
1564 href="http://code.google.com/p/mrpt/source/detail?r=3009" >r3009</a>
1565  - mrpt::reactivenav::CHolonomicVFF and
1566 mrpt::reactivenav::CHolonomicND now have more configurable parameters, loadable
1567 from config files. See their documentation.
1568  - Repulsive forces from obstacles in
1569 mrpt::reactivenav::CHolonomicVFF are now automatically normalized wrt the
1570 density of the 360deg view of obstacles and forces follow a "1/range" law
1571 instead of the old "exp(-range)".
1572  - Solved a stability issue in C-S paths, in
1573 mrpt::reactivenav::CPTG_DiffDrive_CS (By Mariano Jaimez Tarifa) - <a
1574 href="http://code.google.com/p/mrpt/source/detail?r=3085" >r3085</a>
1575  - [mrpt-scanmatching]
1576  - mrpt::scanmatching::robustRigidTransformation():
1577  - Changed behavior not to allow features to appear in
1578 duplicated pairings.
1579  - Added a consistency test to avoid seeding RANSAC with an
1580 inconsistent initial model.
1581  - [mrpt-slam]
1582  - mrpt::slam::CMetricMapBuilderICP now does not integrate the
1583 small pose changes due to odometry and/or relocalization when considering the
1584 distance and angle thresholds. This means that fewer map updates are now done
1585 for the same ICP-SLAM parameters, which should lead to "less noisy" maps.
1586  - New functions:
1587  - [mrpt-base]
1588  - mrpt::utils::abs_diff()
1589  - mrpt::system::getMRPTLicense()
1590  - mrpt::system::getFileModificationTime()
1591  - mrpt::math::noncentralChi2PDF_CDF() is now exposed (was
1592 private)
1593  - mrpt::utils::sprintf_container()
1594  - mrpt::poses::operator -(mrpt::poses::CPose3DQuat)
1595  - max3() and min3() moved from the global namespace to
1596 mrpt::utils::max3() and mrpt::utils::min3()
1597  - New examples:
1598  - octomap_simple
1599  - ransac-data-association
1600  - Build system:
1601  - Update to nanoflann 1.1.4 - <a
1602 href="http://code.google.com/p/mrpt/source/detail?r=2937" >r2937</a>, <a
1603 href="http://code.google.com/p/mrpt/source/detail?r=3017" >r3017</a>
1604  - Update to Eigen 3.1.2 - <a
1605 href="http://code.google.com/p/mrpt/source/detail?r=3064" >r3064</a>
1606  - MRPT's root "CMakeLists.txt" has undergone a big refactoring and
1607 cleanup - <a href="http://code.google.com/p/mrpt/source/detail?r=2961"
1608 >r2961</a>
1609  - Backward compatible "mrpt-core" has been removed as a fake lib for
1610 which to search with CMake from user programs - <a
1611 href="http://code.google.com/p/mrpt/source/detail?r=2961" >r2961</a>
1612  - More system libs are detected in Linux (libclang-dev, lib3ds-dev),
1613 discarding embedded versions then - <a
1614 href="http://code.google.com/p/mrpt/source/detail?r=2963" >r2963</a> - <a
1615 href="http://code.google.com/p/mrpt/issues/detail?id=17" >Closes #17</a>
1616  - Automatic detection of supported SIMD extensions (SSE*) from CMake
1617 (only for Linux OS) - <a
1618 href="http://code.google.com/p/mrpt/source/detail?r=3013" >r3013</a>
1619  - Fixed building with Visual Studio 2012 (MSVC11) - <a
1620 href="http://code.google.com/p/mrpt/source/detail?r=3017" >r3017</a>
1621  - MRPT now allows defining header-only libraries with the
1622 define_mrpt_lib_header_only() macro - <a
1623 href="http://code.google.com/p/mrpt/source/detail?r=3034" >r3034</a>, <a
1624 href="http://code.google.com/p/mrpt/source/detail?r=3035" >r3035</a>
1625  - More unit tests:
1626  - for all probability distribution functions in mrpt::math,
1627  - for the parser in mrpt::hwdrivers::CGPSInterface::parse_NMEA()
1628  - for the octomap map
1629  - for serialization/deserealization of many classes.
1630  - Added new documentation page: <a href="env-vars.html" >environment
1631 variables</a>.
1632  - Removed the build flag "MRPT_BACKCOMPATIB_08X".
1633  - Fixes for building under Mac OSX: <a
1634 href="http://code.google.com/p/mrpt/source/detail?r=3181" >r3181</a>
1635  - Enable some c++11 features if the compiler supports them - <a
1636 href="http://code.google.com/p/mrpt/source/detail?r=3273" >r3273</a>
1637  - BUG FIXES:
1638  - Build: Fixed detection of OpenCV 2.4.2+ installed in the system
1639 via CMake config file instead of pkg-config, which seems to be broken. - <a
1640 href="http://code.google.com/p/mrpt/source/detail?r=3019" >r3019</a>
1641  - [mrpt-base] The iterator returned by end() in all MRPT vectors and
1642 matrices (based on Eigen) pointed to the last element, not to the (now correct)
1643 next position after the last element - <a
1644 href="http://code.google.com/p/mrpt/source/detail?r=2941" >r2941</a>
1645  - [mrpt-base] mrpt::dynamicsize_vector::resize() performed a memory
1646 reallocation even if given the current size, due to an inherited behavior from
1647 Eigen. It is not the expected behavior, so it has been fixed. - <a
1648 href="http://code.google.com/p/mrpt/source/detail?r=3003" >r3003</a>
1649  - [mrpt-base] Wrong computation of normPDF() values for the
1650 multidimensional cases. Closes <a
1651 href="http://code.google.com/p/mrpt/issues/detail?id=46" >#46</a> - <a
1652 href="http://code.google.com/p/mrpt/source/detail?r=3068" >r3068</a>
1653  - [mrpt-base] mrpt::poses::CPoint::asString() confused the 2D and 3D
1654 cases (Thanks Cipri!)
1655  - [mrpt-base] Fixed errors in de-serialization of
1656 mrpt::utils::CPointPDFSOG and mrpt::maps::CReflectivityGridMap2D
1657  - [mrpt-base] mrpt::math::KDTreeCapable::kdTreeRadiusSearch2D()
1658 always returned 0 matched.
1659  - [mrpt-graphs] Fixed bug in RecursiveSpectralPartition (Thanks to
1660 Edu!) - <a href="http://code.google.com/p/mrpt/source/detail?r=3026" >r3026</a>
1661  - [mrpt-hwdrivers] Fixed potential SEGFAULT in
1662 mrpt::hwdrivers::CGPSInterface (Thanks K.Miyawaki for <a
1663 href="http://www.mrpt.org/node/2474" >reporting</a>)
1664  - [mrpt-hwdrivers] Fixed communications to LMS 1xx scanners (Thanks
1665 Henry! See http://code.google.com/p/mrpt/issues/detail?id=49 )
1666  - [mrpt-maps] mrpt::maps::COccupancyGridMap2D::getAs3DObject()
1667 returned cells with an occupancy of exactly "0" as transparent - <a
1668 href="http://code.google.com/p/mrpt/source/detail?r=2957" >r2957</a>
1669  - [mrpt-maps] Fixed saving the correct point colors in
1670 mrpt::maps::CColouredPointsMap::savePCDFile() (Thanks Mariano!) - <a
1671 href="http://code.google.com/p/mrpt/source/detail?r=3090" >r3090</a>
1672  - [mrpt-maps] In CPointsMap::computeMatchingWith3D. Fixed matching
1673 two 3D point clouds as each correspondence was inserted twice into the output
1674 vector. (By Paco) - <a href="http://code.google.com/p/mrpt/source/detail?r=3162"
1675 >r3162</a>
1676  - [mrpt-opengl] Fixed a potential bug: after deserializing an object
1677 based on a display-list (most of them), it won't update in the opengl view.
1678  - [mrpt-reactivenav] Class mrpt::reactivenav::CHolonomicVFF was not
1679 exported in Windows DLL's (Thanks Mariano for noticing!).
1680  - [mrpt-reactivenav] Fixed wrong computation of obstacles force
1681 fields in mrpt::reactivenav::CHolonomicVFF (Thanks Mariano for noticing!) - <a
1682 href="http://code.google.com/p/mrpt/source/detail?r=2953" >r2953</a>
1683  - [mrpt-reactivenav] Precomputed collision grids could be loaded in
1684 mrpt::reactivenav::CParameterizedTrajectoryGenerator even for different robot
1685 parameters/shape: now it correctly detects such situations and recompute when
1686 needed - <a href="http://code.google.com/p/mrpt/source/detail?r=2939" >r2939</a>
1687 - Closes <a href="http://code.google.com/p/mrpt/issues/detail?id=33" >#33</a>
1688  - [mrpt-reactivenav] ND algorithm: Fixed bugs of "last gap is never
1689 evaluated" and wrong composition of representative direction for some gaps (By
1690 Mariano) - <a href="http://code.google.com/p/mrpt/source/detail?r=3056"
1691 >r3056</a>
1692 
1693 
1694  <br>
1695  <hr>
1696  <a name="0.9.6">
1697  <h2>Version 0.9.6 - (Version 1.0.0-Release_Candidate_4): Released 30-MAY-2012
1698 (SVN 2930) </h2></a>
1699  - New applications:
1700  - <a
1701 href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-stereo-calibrate"
1702 >kinect-stereo-calibrate</a>: A GUI tool for calibrating RGB+D and/or stereo
1703 cameras, including live Kinect capturing.
1704  - Removed applications:
1705  - stereo-calib-gui: it's now superseded by kinect-stereo-gui. The old
1706 command line tool is still useful, so it's still there as the example
1707 "stereo-calib-opencv".
1708  - Changes in applications:
1709  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-icp-slam"
1710 >icp-slam</a>:
1711  - Added a new option (SHOW_LASER_SCANS_3D in config files) to draw
1712 laser scans in the live 3D view - <a
1713 href="http://code.google.com/p/mrpt/source/detail?r=2881" >r2881</a>
1714  - <a
1715 href="http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit"
1716 >rawlog-edit</a>:
1717  - Operation "--camera-params" now also handles stereo observations.
1718  - New operation "--stereo-rectify" for batch rectifying datasets
1719 with stereo images.
1720  - New operation "--rename-externals".
1721  - <a
1722 href="http://www.mrpt.org/list-of-mrpt-apps/application-SceneViewer"
1723 >SceneViewer3D</a>:
1724  - New menu for generating high-resolution renders of any scene
1725 directly to imag files - <a
1726 href="http://code.google.com/p/mrpt/source/detail?r=2775" >r2775</a>
1727  - Many new menus for selective selecting objects and applying
1728 operations on them - <a
1729 href="http://code.google.com/p/mrpt/source/detail?r=2776" >r2776</a>
1730  - stereo-calib-gui: Now generates a report with detailed and clear
1731 results from stereo calibration and allows the user to change most parameters
1732 interactively - <a href="http://code.google.com/p/mrpt/source/detail?r=2801"
1733 >r2801</a>
1734  - <a
1735 href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-3d-view"
1736 >kinect-3d-view</a>: New key command: press '9' to grab selected snapshots to
1737 disk - <a href="http://code.google.com/p/mrpt/source/detail?r=2890" >r2890</a>
1738  - Kinect stuff:
1739  - [mrpt-hwdrivers]
1740  - mrpt::hwdrivers::CKinect now decodes Bayer color using OpenCV
1741 instead of default freenect - <a
1742 href="http://code.google.com/p/mrpt/source/detail?r=2721" >r2721</a>, <a
1743 href="http://code.google.com/p/mrpt/source/detail?r=2762" >r2762</a>
1744  - mrpt::hwdrivers::CKinect no longer forces a horizontal tilt at
1745 start up by default, what may be annoying (if required, set
1746 "initial_tilt_angle") - <a
1747 href="http://code.google.com/p/mrpt/source/detail?r=2722" >r2722</a>
1748  - mrpt::hwdrivers::CKinect now loads Kinect calibration files in a
1749 format compatible with stereo cameras. See
1750 http://www.mrpt.org/Kinect_calibration
1751  - [mrpt-obs]
1752  - New method mrpt::obs::CObservation3DRangeScan::convertTo2DScan()
1753 allows simulating a "fake 2D laser scanner" from a Kinect. See the example:
1754 http://www.mrpt.org/Example_Kinect_To_2D_laser_scan
1755  - [mrpt-vision]
1756  - New function mrpt::vision::checkerBoardStereoCalibration() to
1757 calibrate stereo and RGB+D cameras. See also the program <a
1758 href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-stereo-calibrate"
1759 >kinect-stereo-calibrate</a>:
1760  - New classes:
1761  - [mrpt-gui]
1762  - New event generated by GUI windows:
1763 mrpt::gui::mrptEventWindowClosed
1764  - [mrpt-hwdrivers]
1765  - mrpt::hwdrivers::CRaePID: A new interface to PID gas sensing
1766 devices (by Emil Khatib, University of Malaga) - <a
1767 href="http://code.google.com/p/mrpt/source/detail?r=2841" >r2841</a>
1768  - [mrpt-opengl]
1769  - New classes for representing confidence intervals (ellipsoids) in
1770 transformed spaces - <a
1771 href="http://code.google.com/p/mrpt/source/detail?r=2783" >r2783</a>
1772  - mrpt::opengl::CGeneralizedEllipsoidTemplate<>
1773  - mrpt::opengl::CEllipsoidRangeBearing2D
1774  - mrpt::opengl::CEllipsoidInverseDepth2D
1775  - mrpt::opengl::CEllipsoidInverseDepth3D
1776  - mrpt::opengl::CFrustum to easily render these geometric figures
1777  - New struct mrpt::opengl::TFontParams result of a code refactoring
1778  - [mrpt-vision]
1779  - mrpt::vision::TSIFTDescriptorsKDTreeIndex,
1780 TSURFDescriptorsKDTreeIndex - <a
1781 href="http://code.google.com/p/mrpt/source/detail?r=2799" >2799</a>
1782  - mrpt::vision::CStereoRectifyMap - See tutorial online:
1783 http://www.mrpt.org/Rectifying_stereo_
1784 
1785 */
1786 // clang-format on



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 3a26b90fd Wed Mar 25 20:17:03 2020 +0100 at miƩ mar 25 23:05:41 CET 2020