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



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: c7a3bec24 Sun Mar 29 18:33:13 2020 +0200 at dom mar 29 18:50:38 CEST 2020