Main MRPT website > C++ reference for MRPT 1.9.9
changeLog_doc.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 /** \page changelog Change Log
11  *
12 
13 <p> <b>Note:</b> <i>If you are displaying a local version of this page and you have not built the whole HTML documentation, the links above will be broken. Either build the documentation invoking <code>make documentation_html</code> or [browse it on-line](http://www.mrpt.org/).</i></p>
14 
15 <hr>
16 <a name="2.0.0">
17 <h2>Version 2.0.0: (Under development) </h2></a>
18 - <b>Most important changes:</b>
19  - MRPT now requires **C++14** to build and use. See this page for a guide to port existing code to MRPT 2.0: \ref porting_mrpt2
20  - Support for old namespaces `mrpt-scanmatching`, `mrpt-reactivenav` is over.
21  - Backwards compatible headers for "maps" and "observations" in mrpt::slam are removed.
22  They moved to their own namespaces in MRPT v1.3.0 (Jan 2015).
23  - All pointer typedefs are now in their respective classes.
24  - Using a variant type from the mapbox variant library, and added serialization with variants(To be replaced by std::variant eventually).
25 - <b>Detailed list of changes:</b>
26  - Changes in libraries:
27  - \ref mrpt_base_grp
28  - Removed functions (replaced by C++11/14 standard library):
29  - mrpt::math::erf, mrpt::math::erfc, std::isfinite, mrpt::math::std::isnan
30  - `mrpt::math::make_vector<>` => `std::vector<>{...}` braced initializator
31  - Added: mrpt::make_aligned_shared<> template
32  - mrpt::utils::CConfigFileBase::write() now supports enum types.
33  - New method mrpt::utils::CStream::ReadPOD() and macro `MRPT_READ_POD()` for reading unaligned POD variables.-
34  - \ref mrpt_slam_grp
35  - rbpf-slam: Add support for simplemap continuation.
36  - \ref mrpt_nav_grp
37  - Removed deprecated mrpt::nav::THolonomicMethod.
38  - 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.
39  - Added methods to load/save mrpt::nav::TWaypointSequence to configuration files.
40  - \ref mrpt_comms_grp [NEW IN MRPT 2.0.0]
41  - This new module has been created to hold all serial devices & networking classes, with minimal dependencies.
42  - \ref mrpt_maps_grp
43  - Added optional "channel" attribute to CReflectivityGrdMap2D and CObservationReflectivity to support different colors of light.
44  - BUG FIXES:
45  - Fix reactive navigator inconsistent state if navigation API is called from within rnav callbacks.
46  - Fix incorrect evaluation of "ASSERT" formulas in mrpt::nav::CMultiObjectiveMotionOptimizerBase
47  - Fix aborting reading from LMS111 scanner on first error.
48  - Fix == operator on CPose3D: it now uses an epsilon for comparing the rotation matrices.
49  - Fix accessing unaligned POD variables deserializing CObservationGPS (via the new `MRPT_READ_POD()` macro).
50  - Fix segfault in CMetricMap::loadFromSimpleMap() if the provided CMetricMap has empty smart pointers.
51 
52 
53 <hr>
54 <a name="1.5.5">
55 <h2>Version 1.5.5: (Under development) </h2></a>
56 - <b>Detailed list of changes:</b>
57  - BUG FIXES:
58  - Fix likelihood computation in mrpt::maps::CReflectivityGridMap2D (which led to crash)
59  - Fixed regression in particle resampling affecting RBPF-SLAM methods. Introduced in Dec. 2016 with [this commit](https://github.com/MRPT/mrpt/commit/691973813bdc53d3faa7088b092eb041aa80d0ce).
60 
61 <hr>
62 <a name="1.5.4">
63 <h2>Version 1.5.4: Released 31/OCT/2017 </h2></a>
64 - <b>Detailed list of changes:</b>
65  - \ref mrpt_base_grp
66  - Fix potential uninitialized value in CRobot2DPoseEstimator::getLatestRobotPose()
67  - MRPT_getCompilationDate() returns time as well
68  - \ref mrpt_gui_grp
69  - mrpt::gui::mrptEventMouseMove: Added new mrpt::gui windows event type.
70  - Build system:
71  - Fix MRPTConfig.cmake for system octomap libraries.
72  - Fix package-contains-vcs-control-file (.gitingore) Lintian error.
73  - Fix compiling without liboctomap-dev in Ubuntu PPA.
74  - BUG FIXES:
75  - Fix waypoint reactive navigator edge case in which "end event" won't be issued.
76  - Fix waypoint reactive navigator error while doing final aligning (missing and dupplicated nav-end events).
77  - Fix aborting reading from LMS111 scanner on first error.
78  - Fix waypoint reactive navigator edge case in which "end event" won't be issued.
79  - Fix corrupted pointers in CNetworkOfPoses after copy or move operations.
80  - Fix invalid TP-targets generated during reactive navigation.
81  - Fix memory leak in reactivenav engine.
82  - Fix potential out-of-range access in CObservation3DRangeScan::convertTo2DScan()
83 
84 <hr>
85 <a name="1.5.3">
86 <h2>Version 1.5.3: Released 13/AUG/2017 </h2></a>
87 - <b>Detailed list of changes:</b>
88  - CMake >=3.1 is now required for use of ExternalProjects.
89  - Scripts `scripts/prepare_{debian,release}.sh` have been refactored and simplified.
90  - Removed embedded source code versions of Eigen, assimp and octomap. Downloaded and built as ExternalProjects if not present in the system.
91  - Releases will be signed with PGP from now on and posted as binary attachments to GitHub releases.
92 
93 <hr>
94 <a name="1.5.2">
95 <h2>Version 1.5.2: Released 6/AUG/2017 </h2></a>
96 - <b>Detailed list of changes:</b>
97  - Changes in libraries:
98  - \ref mrpt_base_grp
99  - Added methods:
100  - mrpt::synch::CCriticalSection::try_enter()
101  - mrpt::synch::CCriticalSectionRecursive::try_enter()
102  - \ref mrpt_nav_grp
103  - 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.
104  - Added methods to load/save mrpt::nav::TWaypointSequence to configuration files.
105  - \ref mrpt_slam_grp
106  - rbpf-slam: Add support for simplemap continuation.
107  - BUG FIXES:
108  - Fix reactive navigator inconsistent state if navigation API is called from within rnav callbacks.
109  - Fix incorrect evaluation of "ASSERT" formulas in mrpt::nav::CMultiObjectiveMotionOptimizerBase
110 
111 <hr>
112 <a name="1.5.1">
113 <h2>Version 1.5.1: Released 21/JUN/2017 </h2></a>
114 - <b>Detailed list of changes:</b>
115  - Changes in libraries:
116  - \ref mrpt_nav_grp
117  - fix const-correctness: [commit](https://github.com/MRPT/mrpt/commit/7e79003d2adeb7b170fa04e0bc34d42707e07306)
118  - More flexible callback behavior: [commit](https://github.com/MRPT/mrpt/commit/5b054336a1ac75f6e4f8741e5049971917a2980a)
119 
120 
121 <hr>
122 <a name="1.5.0">
123 <h2>Version 1.5.0: Released 10-JUN-2017</h2></a>
124  - Changes in apps:
125  - New app [PTG-configurator](http://www.mrpt.org/list-of-mrpt-apps/application-ptg-configurator/)
126  - [ReactiveNavigationDemo](http://www.mrpt.org/list-of-mrpt-apps/application-reactivenavigationdemo/) has been totally rebuilt as a 3D visualizer capable of testing different navigation algorithms and robot kinematics.
127  - [RawLogViewer](http://www.mrpt.org/list-of-mrpt-apps/rawlogviewer/):
128  - Now displays a textual and graphical representation of all observation timestamps, useful to quickly detect sensor "shortages" or temporary failures.
129  - New menu operation: "Edit" -> "Rename selected observation"
130  - mrpt::obs::CObservation3DRangeScan pointclouds are now shown in local coordinates wrt to the vehicle/robot, not to the sensor.
131  - [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/): New flag: `--txt-externals`
132  - Changes in libraries:
133  - \ref mrpt_base_grp
134  - New API to interface ZeroMQ: \ref noncstream_serialization_zmq
135  - Deprecated function (since 1.3.0) deleted: mrpt::system::registerFatalExceptionHandlers()
136  - New method mrpt::poses::CPosePDFParticles::resetAroundSetOfPoses()
137  - Class mrpt::utils::CRobotSimulator renamed ==> mrpt::kinematics::CVehicleSimul_DiffDriven
138  - New twist (linear + angular velocity state) classes: mrpt::math::TTwist2D, mrpt::math::TTwist3D
139  - New template method: mrpt::utils::CStream::ReadAsAndCastTo
140  - Added missing method mrpt::poses::CPose2D::inverseComposePoint() for consistency with CPose3D
141  - New class std::recursive_mutex
142  - New class mrpt::utils::COutputLogger replaces the classes mrpt::utils::CDebugOutputCapable (deprecated) and mrpt::utils::CLog (removed).
143  - New macros for much more versatily logging:
144  - MRPT_LOG_DEBUG(), MRPT_LOG_INFO(), MRPT_LOG_WARN(), MRPT_LOG_ERROR()
145  - MRPT_LOG_DEBUG_STREAM, MRPT_LOG_INFO_STREAM, MRPT_LOG_WARN_STREAM, MRPT_LOG_ERROR_STREAM
146  - New functions for polynomial roots: see \ref polynomial_roots
147  - New functions for signal filtering: see \ref filtering_grp
148  - New functions for Fresnel integrals: see \fresnel_integrals_grp
149  - New classes mrpt::math::CAtan2LookUpTable, mrpt::math::CAtan2LookUpTableMultiRes
150  - [API change] The following functions are no longer static methods: (since their classes are now derived from the state-aware mrpt::utils::COutputLogger)
151  - mrpt::math::RANSAC_Template::execute()
152  - mrpt::math::CLevenbergMarquardtTempl::execute()
153  - Deleted methods in Eigen-extensions: leftDivideSquare(), rightDivideSquare()
154  - Removed support for **named** semaphores in mrpt::synch::CSemaphore
155  - new method mrpt::utils::CTimeLogger::getLastTime()
156  - Removed mrpt::utils::CStartUpClassesRegister, replaced by the new macro MRPT_INITIALIZER()
157  - New class mrpt::utils::CRateTimer
158  - mrpt::poses::CRobot2DPoseEstimator now uses a more generic odometry-based velocity model (vx,vy,omega).
159  - New template mrpt::utils::ts_hash_map<> for thread-safe, std::map-like containers based on hash functions.
160  - Included exprtk header-only library to runtime compile & evaluation of mathematical expressions, under `<mrpt/otherlibs/exprtk.hpp>`
161  - New smart pointer templates: `mrpt::utils::copy_ptr<>`, `mrpt::utils::poly_ptr<>`.
162  - New colormap: mrpt::utils::hot2rgb()
163  - New function mrpt::system::find_mrpt_shared_dir()
164  - New class mrpt::utils::CDynamicGrid3D<>
165  - New function mrpt::comms::net::http_request()
166  - New function mrpt::system::now_double()
167  - New function mrpt::utils::getAllRegisteredClassesChildrenOf()
168  - Safer CClassRegistry: detect and warn on attempts to duplicated class registration.
169  - New class mrpt::math::CRuntimeCompiledExpression
170  - mrpt::utils::CConfigFile and mrpt::utils::CConfigFileMemory now can parse config files with end-of-line backslash to split long strings into several lines.
171  - New class mrpt::poses::FrameTransformer
172  - mrpt::poses classes now have all their constructors from mrpt::math types marked as explicit, to avoid potential ambiguities and unnoticed conversions.
173  - [Sophus](https://github.com/strasdat/Sophus/) is now used internally for some Lie Algebra methods, and also exposed to the user as `#include <mrpt/otherlibs/sophus/so3.hpp>`, etc. as part of mrpt-base
174  - \ref mrpt_bayes_grp
175  - [API change] `verbose` is no longer a field of mrpt::bayes::CParticleFilter::TParticleFilterOptions. Use the setVerbosityLevel() method of the CParticleFilter class itself.
176  - [API change] mrpt::bayes::CProbabilityParticle (which affects all PF-based classes in MRPT) has been greatly simplified via usage of the new mrpt::utils::copy_ptr<> pointee-copy-semantics smart pointer.
177  - \ref mrpt_graphs_grp
178  - New class mrpt::graphs::ScalarFactorGraph, a simple but extensible linear GMRF solver. Refactored from mrpt::maps::CGasConcentrationGridMap2D, etc.
179  - \ref mrpt_gui_grp
180  - mrpt::gui::CWxGLCanvasBase is now derived from mrpt::opengl::CTextMessageCapable so they can draw text labels
181  - New class mrpt::gui::CDisplayWindow3DLocker for exception-safe 3D scene lock in 3D windows.
182  - \ref mrpt_hwdrivers_grp
183  - Using rplidar newest SDK 1.5.6 instead of 1.4.3, which support rplidar A1 and rplidar A2
184  - mrpt::hwdrivers::CNTRIPEmitter can now also dump raw NTRIP data to a file
185  - \ref mrpt_kinematics_grp
186  - New classes for 2D robot simulation:
187  - mrpt::kinematics::CVehicleSimul_DiffDriven
188  - mrpt::kinematics::CVehicleSimul_Holo
189  - New classes for 2D robot kinematic motion commands. See children of mrpt::kinematics::CVehicleVelCmd
190  - \ref mrpt_maps_grp
191  - mrpt::maps::COccupancyGridMap2D::loadFromBitmapFile() correct description of `yCentralPixel` parameter.
192  - mrpt::maps::CPointsMap `liblas` import/export methods are now in a separate header. See \ref mrpt_maps_liblas_grp and \ref dep-liblas
193  - New class mrpt::maps::CRandomFieldGridMap3D
194  - New class mrpt::maps::CPointCloudFilterByDistance
195  - \ref mrpt_obs_grp
196  - [ABI change] mrpt::obs::CObservation2DRangeScan
197  - range scan vectors are now protected for safety.
198  - New getter/setter methods.
199  - backwards-compatible proxies added for read-only from range scan members.
200  - [ABI change] mrpt::obs::CObservation3DRangeScan:
201  - Now uses more SSE2 optimized code
202  - Depth filters are now available for mrpt::obs::CObservation3DRangeScan::project3DPointsFromDepthImageInto() and mrpt::obs::CObservation3DRangeScan::convertTo2DScan()
203  - New switch mrpt::obs::CObservation3DRangeScan::EXTERNALS_AS_TEXT for runtime selection of externals format.
204  - mrpt::obs::CObservation2DRangeScan now has an optional field for intensity.
205  - mrpt::obs::CRawLog can now holds objects of arbitrary type, not only actions/observations. This may be useful for richer logs aimed at debugging.
206  - mrpt::obs::CObservationVelodyneScan::generatePointCloud() can now generate the microseconds-precise timestamp for each individual point (new param `generatePerPointTimestamp`).
207  - \ref mrpt_opengl_grp
208  - [ABI change] mrpt::opengl::CAxis now has many new options exposed to configure its look.
209  - mrpt::opengl::CSetOfLines can now optionally show vertices as dots.
210  - lib3DS is no longer shipped as an embedded version. A system library in Linux is required to use mrpt::opengl::C3DSScene. Use mrpt::opengl::CAssimpModel as a more powerful alternative.
211  - \ref mrpt_slam_grp
212  - [API change] mrpt::slam::CMetricMapBuilder::TOptions does not have a `verbose` field anymore. It's supersedded now by the verbosity level of the CMetricMapBuilder class itself.
213  - [API change] getCurrentMetricMapEstimation() renamed mrpt::slam::CMultiMetricMapPDF::getAveragedMetricMapEstimation() to avoid confusions.
214  - \ref mrpt_hwdrivers_grp
215  - mrpt::hwdrivers::CGenericSensor: external image format is now `png` by default instead of `jpg` to avoid losses.
216  - [ABI change] mrpt::hwdrivers::COpenNI2Generic:
217  - refactored to expose more methods and allow changing parameters via its constructor.
218  - Now supports reading from an IR, RGB and Depth channels independenty.
219  - mrpt::hwdrivers::CHokuyoURG now can optionally return intensity values.
220  - Deleted old, unused classes:
221  - mrpt::hwdrivers::CBoardIR
222  - mrpt::hwdrivers::CBoardDLMS
223  - mrpt::hwdrivers::CPtuHokuyo
224  - mrpt::hwdrivers::CHokuyoURG no longer as a "verbose" field. It's superseded now by the COutputLogger interface.
225  - mrpt::hwdrivers::CActivMediaRobotBase and the embedded ARIA library have been removed. Nowadays, one can access to ARIA robots via ROS packages more easily than via MRPT.
226  - \ref mrpt_maps_grp
227  - mrpt::maps::CMultiMetricMapPDF added method CMultiMetricMapPDF::prediction_and_update_pfAuxiliaryPFStandard().
228  - \ref mrpt_nav_grp
229  - New mrpt::nav::CWaypointsNavigator interface for waypoint list-based navigation.
230  - [ABI & API change] PTG classes refactored (see new virtual base class mrpt::nav::CParameterizedTrajectoryGenerator and its derived classes):
231  - Old classes `CPTG%d` have been renamed to describe each path type. Old PTGs #6 and #7 have been removed for lack of practical use.
232  - New separate classes for PTGs based on numerically-integrated paths and on closed-form formulations.
233  - Old deprecated method of PTGs `lambdaFunction()` removed.
234  - Parameters are no longer passed via a mrpt::utils::TParameters class, but via a mrpt::utils::CConfigFileBase which makes parameter passing to PTGs much more maintainable and consistent.
235  - PTGs now have a score_priority field to manually set hints about preferences for path planning.
236  - PTGs are now mrpt::utils::CLoadableOptions classes
237  - New classes:
238  - mrpt::nav::CMultiObjectiveMotionOptimizerBase
239  - \ref mrpt_graphslam_grp
240  - Extend mrpt-graphslam lib to execute simulated/real-time graphSLAM.
241  mrpt-graphslam supports 2D/3D execution of graphSLAM, utilizing
242  LaserScans, odometry information.
243  - Develop application `graphslam-engine` that executes graphSLAM via
244  the mrpt-graphslam lib
245  - mrpt::grpahslam::CGraphSlamEngine as the generic object that
246  manages graphSLAM, Node/Edge registration decider
247  classes under the mrpt::graphslam::deciders namesapce, optimizer
248  wrapper classes under mrpt::graphslam::optimizers
249  - Changes in build system:
250  - [Windows only] `DLL`s/`LIB`s now have the signature `lib-${name}${2-digits-version}${compiler-name}_{x32|x64}.{dll/lib}`, allowing several MRPT versions to coexist in the system PATH.
251  - [Visual Studio only] There are no longer `pragma comment(lib...)` in any MRPT header, so it is the user responsibility to correctly tell user projects to link against MRPT libraries.
252  Normally, this is done with the standard command `TARGET_LINK_LIBRARIES(MYTARGET ${MRPT_LIBS})`.
253  - Debian package: depends on libopenni-dev
254  - Optional dependency `liblas`: minimum required version is now 1.6.0 (Ubuntu Trusty or above).
255  - Update of embedded copy of nanoflann to version 1.2.0.
256  - New script for automated dumping stack traces on unit tests failures (`tests/run_all_tests_gdb.sh`)
257  - Fix build against wxWidgets 3.1.*
258  - Embedded version of gtest upgraded to 1.8.0
259  - BUG FIXES:
260  - Fix inconsistent state after calling mrpt::obs::CObservation3DRangeScan::swap()
261  - Fix SEGFAULT in mrpt::obs::CObservation3DRangeScan if trying to build a pointcloud in an external container (mrpt::opengl, mrpt::maps)
262  - Fix mrpt::hwdrivers::CHokuyoURG can return invalid ray returns as valid ranges.
263  - Fix PTG look-up-tables will always fail to load from cache files and will re-generate (Closes [GitHub #243](https://github.com/MRPT/mrpt/issues/243))
264  - Fix mrpt::maps::COccupancyGridMap2D::simulateScanRay() fails to mark out-of-range ranges as "invalid".
265  - Fix mrpt::utils::CMemoryStream::Clear() after assigning read-only memory blocks.
266  - Fix point into polygon checking not working for concave polygons. Now, mrpt::math::TPolygon2D::contains() uses the winding number test which works for any geometry.
267  - Fix inconsistent internal state after externalizing mrpt::obs::CObservation3DRangeScan
268  - Fix a long outstanding bug regarding losing of keystroke events in CDisplayWindow3D windows (Closes #13 again)
269  - Fix wrong units for negative numbers in mrpt::system::unitsFormat()
270  - Fix potential thread-unsafe conditions while inserting a mrpt::obs::CObservation2DRangeScan into a pointmap with SSE2 optimizations enabled.
271  - CStream: Fix memory leak if an exception (e.g. EOF) is found during object deserialization.
272  - Fix a bug in the `onlyUniqueRobust` option for point cloud matching (affecting CICP, etc.). Thanks [Shuo](https://github.com/ygzhangsoya)!
273 
274 <hr>
275 <a name="1.4.0">
276  <h2>Version 1.4.0: Released 22-APR-2016 </h2></a>
277  - <b>Most important changes:</b>
278  - Support for Velodyne LIDAR sensors.
279  - New minor version number due to changes in the API of these classes (read details below): mrpt::obs::CObservationGPS, mrpt::hwdrivers::CGPSInterface
280  - [Python bindings](https://github.com/MRPT/mrpt/wiki/PythonBindings) added for a subset of MRPT functionality (Thanks Peter Rudolph and Nikolaus Demmel!)
281  - <b>Detailed list of changes:</b>
282  - New apps:
283  - [gps2rawlog](http://www.mrpt.org/list-of-mrpt-apps/application-gps2rawlog/): Application to parse raw dumps of a GPS (GNSS) receiver output.
284  - [image2gridmap](http://www.mrpt.org/list-of-mrpt-apps/application-image2gridmap/): Small tool to import any image as an MRPT gridmap object file (*.gridmap).
285  - [velodyne-view](http://www.mrpt.org/list-of-mrpt-apps/application-velodyne-view/): Application to test, visualize and grab data from a live Velodyne sensor or from a PCAP record.
286  - Changes in apps:
287  - [rawlog-grabber](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-grabber/): Now does not show GPS and IMU debug data in console, unless `MRPT_HWDRIVERS_VERBOSE` environment variable is set.
288  - [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/): New operation: `--export-gps-all`
289  - Changes in libraries:
290  - \ref mrpt_base_grp
291  - [ABI change] mrpt::system::tokenize() new parameter `skipBlankTokens`
292  - mrpt::utils::circular_buffer now has peek() methods
293  - Eigen::MatrixBase<Derived>::loadFromTextFile() now also accepts `,` as column separator.
294  - New functions:
295  - mrpt::system::timestampAdd()
296  - mrpt::utils::compute_CRC32()
297  - mrpt::utils::saturate<>()
298  - mrpt::utils::CDynamicGrid<> now uses `double` instead of `float` for all dimensions and coordinate computations.
299  - Priority with these functions now work properly in GNU/Linux; though, see the notes in their documentation for required permissions:
300  - mrpt::system::changeCurrentProcessPriority()
301  - mrpt::system::changeThreadPriority()
302  - New classes/structures:
303  - mrpt::math::TPointXYZIu8, mrpt::math::TPointXYZRGBu8, mrpt::math::TPointXYZfIu8, mrpt::math::TPointXYZfRGBu8
304  - \ref mrpt_hwdrivers_grp
305  - New class mrpt::hwdrivers::CVelodyneScanner
306  - mrpt::hwdrivers::CNTRIPEmitter now has a parameter to enable/disable sending back the data from the serial port to the NTRIP caster.
307  - <b>[API changed]</b> mrpt::hwdrivers::CGPSInterface API clean-up and made more generic so any stream can be used to parse GNSS messages, not only serial ports.
308  - New class mrpt::hwdrivers::CStereoGrabber_Bumblebee_libdc1394 for capturing without PGR Flycapture but directly through libdc1394.
309  - Removed class mrpt::hwdrivers::CStereoGrabber_Bumblebee , superseded by mrpt::hwdrivers::CImageGrabber_FlyCapture2 which is capable of both monocular and stereo grabbing.
310  - \ref mrpt_maps_grp
311  - New class mrpt::maps::CHeightGridMap2D_MRF
312  - New base class mrpt::maps::CHeightGridMap2D_Base
313  - mrpt::maps::COccupancyGridMap2D:
314  - New method mrpt::maps::COccupancyGridMap2D::copyMapContentFrom()
315  - New likelihood parameter `LF_useSquareDist`
316  - New parameter mrpt::maps::COccupancyGridMap2D::RAYTRACE_STEP_SIZE_IN_CELL_UNITS
317  - mrpt::maps::COccupancyGridMap2D::simulateScanRay() is now ~40% (GCC) to ~250% (MSVC) faster by default.
318  - New method mrpt::maps::COccupancyGridMap2D::laserScanSimulatorWithUncertainty()
319  - New method mrpt::maps::CHeightGridMap2D::insertIndividualPoint()
320  - mrpt::maps::CMetricMap::compute3DMatchingRatio() has a simplified API now
321  - \ref mrpt_obs_grp
322  - New class mrpt::obs::CObservationVelodyneScan
323  - mrpt::obs::CSinCosLookUpTableFor2DScans now can build a table from a mrpt::obs::T2DScanProperties structure, which now also has its separate header file for better modularity.
324  - <b>[API changed]</b> mrpt::obs::CObservationGPS now stores only one message per objects. API clean-up and extended so the number of GNSS message types is larger and more scalable.
325  - mrpt::obs::gnss: A new namespace with many new data structures for GPS-related messages
326  - mrpt::obs::CObservation3DRangeScan: projection of RGBD images to 3D points now correctly filters out invalid points, which were in previous versions mapped as (0,0,0) points (relative to the sensor).
327  In turn, this leads to point clouds of a dynamic number of points. In case of needing the (u,v) pixel coordinates of projected points, checkout the new fields `points3D_idxs_x` & `points3D_idxs_y`.
328  - New class mrpt::obs::CObservation2DRangeScanWithUncertainty
329  - \ref mrpt_opengl_grp
330  - New class mrpt::opengl::CMesh3D to render 3D models/meshes
331  - New method mrpt::opengl::CPointCloudColoured::recolorizeByCoordinate()
332  - \ref mrpt_slam_grp
333  - Small clean up of mrpt::slam::CICP API, add separate variable to select covariance estimation method.
334  - \ref mrpt_topography_grp
335  - New function mrpt::topography::geocentricToENU_WGS84()
336  - \ref mrpt_vision_grp
337  - mrpt::vision::CDifOdo has been refactored and now does faster image pyramid computation (By Mariano Jaimez)
338  - mrpt::maps::CLandmarksMap changes:
339  - `beaconMaxRange` & `alphaRatio` parameters have been removed since they were not used.
340  - New likelihood parameter `beaconRangesUseObservationStd` to allow using different uncertainty values with each observation.
341  - Changes in build system:
342  - [Python bindings](https://github.com/MRPT/mrpt/wiki/PythonBindings) added for a subset of MRPT functionality (Thanks Peter Rudolph!)
343  - Code ported to support the new libftdi1-dev (Fixes Debian bug #810368, GitHub issue #176)
344  - Fix building with gcc 6.0 (Closes Debian bug #811812)
345  - CMake new option: `DISABLE_MRPT_AUTO_CLASS_REGISTRATION` to reduce the footprint of MRPT statically-linked programs.
346  - Fix building against wxWidgets 3.1
347  - BUG FIXES:
348  - mrpt::math::CQuaternion<> did not check for unit norm in Release builds.
349  - Fix build errors against OpenCV 3.0.0+ without opencv_contrib modules.
350  - mrpt::hwdrivers::CHokuyoURG now correctly handles opening both USB and Ethernet Hokuyo devices (Closes Github issue #180)
351  - Fixed mrpt::comms::net::DNS_resolve_async() may SIGSEGV in slow networks.
352  - mrpt::opengl::CMesh::updateColorsMatrix() did not ignore cells masked out.
353  - Wrong weights used in mrpt::poses::CPosePDFSOG::getMean()
354  - Removed ad-hoc bias addition in range-only predictions in landmarks maps.
355  - Error loading height map count in mrpt::maps::TSetOfMetricMapInitializers (Closes GitHub issue <a href="https://github.com/MRPT/mrpt/issues/205" >#205</a>.
356  - Fix "gray images" grabbed in Windows when capturing the render output of 3D windows (Thanks Mariano J.T. & Christian Kerl from TUM!)
357  - Fix typos and wxWidgets align errors in RawLogViewer GUI (Closes #219)
358  - mrpt::nav::CHolonomicND & mrpt::nav::CHolonomicVFF didn't use the full range of output velocities.
359  - mrpt::utils::CImage::loadFromFile() now does not leave the image in undefined state if the load operation fails.
360  - mrpt::hwdrivers::CLMS100Eth failed to load "pose_yaw" parameter from config file.
361  - mrpt::obs::CObservation3DRangeScan::doDepthAndIntensityCamerasCoincide() did not correctly return `false` for negative offsets between the camera poses.
362 
363 <hr>
364 <a name="1.3.2">
365  <h2>Version 1.3.2: Released 3-NOV-2015 </h2></a>
366  - Changes in Apps:
367  - [rawlog-edit](http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit/):
368  - New operation: `--list-poses`
369  - `--list-images` now also works with 3D range scans
370  - Changes in libraries:
371  - The library mrpt-srba has been moved out of MRPT and now is an independent project: https://github.com/MRPT/srba
372  - \ref mrpt_base_grp
373  - mrpt::math::KDTreeCapable::TKDTreeSearchParams: Removed parameter nChecks, which was ignored by nanoflann anyway.
374  - \ref mrpt_hwdrivers_grp
375  - mrpt::hwdrivers::CCameraSensor: Implemented OpenNI2 support for CCameraSensor
376  - \ref mrpt_nav_grp
377  - mrpt::nav::CAbstractPTGBasedReactive: Maximum acceleration filter (SPEEDFILTER_TAU) now follows paths better (Thanks to Steven Butner, UCSB/ECE)
378  - Changes in build system:
379  - `FIND_PACKAGE(MRPT)` will return libraries in the var `MRPT_LIBRARIES`, following the CMake convention. The old variable name `MRPT_LIBS` will be also returned for backward compatibility.
380  - BUG FIXES:
381  - Fix excessive width of paths drawn by CMetricMapBuilderRBPF::drawCurrentEstimationToImage()
382  - Fix image distortion: k3 may be ignored. (Thanks to CBaiz)
383  - Fix Debian bugs.
384 
385 <hr>
386 <a name="1.3.1">
387  <h2>Version 1.3.1: Released 18-JUL-2015 </h2></a>
388  - Changes in apps:
389  - [navlog-viewer](http://www.mrpt.org/list-of-mrpt-apps/application-navlog-viewer/): Now shows more information on navigation logs.
390  - New app [icp-slam-live](http://www.mrpt.org/list-of-mrpt-apps/application-icp-slam-live/): Real-time ICP-SLAM with a LIDAR sensor.
391  - Changes in libraries:
392  - \ref mrpt_base_grp
393  - New helper templates: mrpt::utils::int_select_by_bytecount<>, mrpt::utils::uint_select_by_bytecount<>
394  - New methods to evaluate SO(2), SO(3), SE(2) and SE(3) averages and weighted averages. See:
395  - Header <mrpt/poses/SO_SE_average.h>
396  - mrpt::poses::SO_average<2>, mrpt::poses::SO_average<3>
397  - mrpt::poses::SE_average<2>, mrpt::poses::SE_average<3>
398  - \ref mrpt_hwdrivers_grp
399  - New sensors supported:
400  - mrpt::hwdrivers::CIMUIntersense
401  - mrpt::hwdrivers::CSkeletonTracker
402  - New parameter mrpt::hwdrivers::CHokuyoURG::m_disable_firmware_timestamp to override faulty Hokuyo timestamps with PC time.
403  - mrpt::hwdrivers::CRoboPeakLidar::turnOn() and turnOff() now really implement turning on/off the RPLidar motor.
404  - \ref mrpt_maps_grp
405  - New method mrpt::maps::COccupancyGridMap2D::getAsPointCloud()
406  - \ref mrpt_nav_grp
407  - Removed old base class CPathPlanningMethod
408  - CPathPlanningCircularRobot => mrpt::nav::PlannerSimple2D: Class renamed (and better described) for consistency with other planners
409  - mrpt::nav::CReactiveNavigationSystem:
410  - Documentation has been added about all existing parameters, and template config files provided as starting points.
411  - The loadConfigFile() method with 2 config files has been deprecated favoring the newer, simpler single config file.
412  - The "ROBOT_NAME" parameter is no longer employed. A minor side effect (probably affecting no one) is that PTG cache files are no longer named differently for different robots.
413  - mrpt::nav::CParameterizedTrajectoryGenerator: New methods to save and load trajectories to binary streams. Used to debug in navlog-viewer.
414  - \ref mrpt_obs_grp
415  - mrpt::obs::CObservation3DRangeScan now supports pixel labels (semantic mapping, etc.)
416  - New class mrpt::obs::CObservationSkeleton to hold body tracking information (by Francisco Angel Moreno)
417  - mrpt::obs::CObservationIMU has new data fields and fields are better documented to reflect whether they refer to local/global coordinate frames
418  - \ref mrpt_vision_grp
419  - mrpt::vision::CImageGrabber_dc1394: Changed default Bayer filter from NEAREST to HQLINEAR
420  - BUG FIXES:
421  - Fix ocasional (false) failure of RANSAC unit tests due to their non-deterministic nature.
422  - Fix build error with MSVC 2010 in mrpt-hmtslam (Closes #127).
423  - Fixed potential wrong bounding box results in mrpt::maps::CPointsMap::boundingBox() when SSE2 optimization is enabled.
424  - mrpt::obs::CObservation6DFeatures: Fixed random crashes related to non-aligned memory in 32bit builds (Fixes #141)
425  - Fix Debian bug [#786349](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786349) on Eigen2 support.
426  - mrpt::hwdrivers::CIMUXSens_MT4: Fix crash in destructor of objects not attached to a physical device.
427  - Fix wrong quaternion cross product when target variable is one of the operands. Also affected the += operator of mrpt::poses::CPose3DQuat (Fixes #148)
428  - mrpt::hwdrivers::CKinect with libfreenect driver: Fix potential memory corruption.
429  - Fix a bug in mrpt::tfest::se3_l2_robust() that led to it returning without trying to find a good consensus solution. It affected the demo app kinect-3d-slam (Fixes #156)
430  - Fix wrong feature points in CFeatureExtraction::extractFeaturesKLT() (Fixes #138)
431 
432 <hr>
433 <a name="1.3.0">
434  <h2>Version 1.3.0: Released 12-JAN-2015 </h2></a>
435  - <b>Most important changes:</b>
436  - Classes in libraries \ref mrpt_obs_grp and \ref mrpt_maps_grp now belong to new namespaces (mrpt::obs, mrpt::maps) instead of the old mrpt::slam
437  - No more `using namespace`s polute MRPT headers. <b>Errors in user projects</b> missing `using namespace XXX` that might be formerly masked will now reveal. <b>This is a good thing</b>, though admitedly annoying...
438  - New library \ref mrpt_nav_grp, subsumming the old \ref mrpt_reactivenav_grp.
439  - New library \ref mrpt_tfest_grp, a refactor of the old \ref mrpt_scanmatching_grp.
440  - <b>Backwards compatible headers</b> have been provided to ease the transition of user code for all those library changes. Warning messages will be shown recommending deprecated replacements.
441  - <b>Detailed list of changes:</b>
442  - Lib changes:
443  - Clean up of the bad practice of `using namespace` in public scopes of headers. May lead to user code failing for missing `using namespace`s which were previously masked.
444  - Namespace "slam" deprecated in libraries mrpt-obs and mrpt-maps (used for historical reasons):
445  - New namespaces \ref mrpt_obs_grp and \ref mrpt_maps_grp.
446  - #include files moved from old paths <mrpt/slam/...> => <mrpt/{obs,maps}/...>
447  - Backward compatible headers added in <mrpt/slam/...> until mrpt 2.0.0
448  - New library \ref mrpt_nav_grp, subsumming the old mrpt-reactivenav (\ref mrpt_reactivenav_grp).
449  - \ref mrpt_reactivenav_grp is now a meta-library, depending on \ref mrpt_nav_grp.
450  - \ref mrpt_tfest_grp : Old library mrpt-scanmatching (\ref mrpt_scanmatching_grp) has been refactored, its API clean-up, and renamed \ref mrpt_tfest_grp
451  - \ref mrpt_scanmatching_grp is now a meta-library, depending on \ref mrpt_tfest_grp.
452  - These classes have been moved between libs for a more sensible organization:
453  - mrpt::slam::CDetectorDoorCrossing ==> mrpt::detectors::CDetectorDoorCrossing
454  - mrpt::slam::CPathPlanningMethod & CPathPlanningCircularRobot: \ref mrpt_slam_grp ==> \ref mrpt_nav_grp
455  - Build System / General changes:
456  - Many optimizations in function arguments (value vs ref). Forces ABI incompatibility with previous versions, hence the change to a new minor version number.
457  - Updated embedded version of Eigen to 3.2.3
458  - Kinect: Dropped support for the CL NUI API, which seems discontinued. Alternatives in use are libfreenect and OpenNI2.
459  - libfreenect is now detected in the system and used instead of compiling the embedded copy of it.
460  - Embedded copy of libfreenect has been updated to (23/oct/2014). It now supports "Kinect for Windows".
461  - More selective linking of .so files to avoid useless dependencies (Fixes #52).
462  - (Windows only) MRPT can now be safely built with libusb support (Freenect, Kinect,...) and it will run on systems without libusb installed, by means of /DELAYLOAD linking flags.
463  - More unit tests.
464  - Changes in classes:
465  - [mrpt-base]
466  - New function mrpt::math::angDistance()
467  - [mrpt-hwdrivers]
468  - mrpt::hwdrivers::CIMUXSens_MT4: (by Joe Burmeister for Suave Aerial Software)
469  - Upgrade to latest XSens SDK 4.2.1. Requires libudev-dev in Linux
470  - Add GPS observations to CIMUXSens_MT4 for Xsens devices like GTi-G-700 which have GPS
471  - mrpt::hwdrivers::CImageGrabber_dc1394: Length of ring buffer is now configurable via TCaptureOptions_dc1394::ring_buffer_size
472  - [mrpt-maps]
473  - Important refactor of internal code related to mrpt::maps::CMultiMetricMap:
474  - All maps (derived from mrpt::maps::CMetricMap) now have a more uniform interface.
475  - Each map now has a `MapDefinition` structure with all its parameters. See docs for mrpt::maps::TMetricMapInitializer
476  - Introduced mrpt::maps::TMapGenericParams to hold parameters shared in all maps.
477  - [mrpt-obs]
478  - CObservation::getDescriptionAsText(): New virtual method to obstain a textual description of observations. Refactoring of messy code previously in the RawLogViewer app.
479  - [mrpt-vision]
480  - mrpt::vision::CFeatureExtraction: Removed (unused) optional ROI parameter in detectors.
481  - BUG FIXES:
482  - mrpt::poses::CRobot2DPoseEstimator could estimate wrong angular velocities for orientations near +-180deg.
483  - mrpt::system::CDirectoryExplorer::sortByName() didn't sort in descending order
484  - Fixed crashes from MATLAB .mex files: mrpt::system::registerFatalExceptionHandlers() has no longer effect, and will be removed in future releases. (Thanks to Jesús Briales García for all the testing!)
485  - Fixed potential crash for Eigen unaligned memory access in 32bit builds in mrpt::slam::CGridMapAligner and other places ([Closes #94](https://github.com/MRPT/mrpt/issues/94))
486 
487 <hr>
488 <a name="1.2.2">
489  <h2>Version 1.2.2: Released 12-SEP-2014 </h2></a>
490  - Changes in apps:
491  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-sceneviewer3d/" >SceneViewer3D</a>:
492  - New menu "File" -> "Import" -> "3D model" which supports many standard formats (via mrpt::opengl::CAssimpModel)
493  - New classes:
494  - [mrpt-hwdrivers]
495  - mrpt::hwdrivers::CRoboPeakLidar to interface Robo Peak LIDAR scanners.
496  - [mrpt-opengl]
497  - mrpt::opengl::CAssimpModel for rendering complex 3D models (many supported formats) in OpenGL scenes.
498  - Changes in classes:
499  - Consistency in all "laser scan" classes: angular increments between rays are now FOV/(N-1) instead of FOV/N.
500  - [mrpt-base]
501  - New method mrpt::utils::CImage::loadTGA()
502  - *IMPORTANT*: Changed behavior of CSerializable/CObject macros (see bugfix below), introducing the new macros DEFINE_SERIALIZABLE_POST_*.
503  May require changes in user code if serializable classes are defined:
504  - Previous version:
505  \code
506  DEFINE_SERIALIZABLE_PRE_*(...)
507  class XXX {
508  DEFINE_SERIALIZABLE(XXX)
509  };
510  \endcode
511  - Must be changed in this version to:
512  \code
513  DEFINE_SERIALIZABLE_PRE_*(...)
514  class XXX {
515  DEFINE_SERIALIZABLE(XXX)
516  };
517  DEFINE_SERIALIZABLE_POST_*(...)
518  \endcode
519  - [mrpt-hwdrivers]
520  - Bumblebee2 Linux support in mrpt::hwdrivers::CImageGrabber_FlyCapture2 via Triclops (by Jesus Briales)
521  - [mrpt-maps]
522  - New method mrpt::maps::COccupancyGridMap2D::getRawMap()
523  - New method mrpt::maps::CColouredPointsMap::getPCLPointCloudXYZRGB()
524  - [mrpt-opengl]
525  - mrpt::opengl::CWxGLCanvasBase (affects all 3D rendering classes): better handling of internal timers for smoother updates while rendering in multithreading apps.
526  - [mrpt-srba]
527  - New method to recover the global coordinates graph-slam problem for a RBA map: mrpt::srba::RbaEngine::get_global_graphslam_problem() (see example [MRPT]\samples\srba-examples\srba-tutorials\tutorial-srba-how-to-recover-global-map.cpp)
528  - BUG FIXES:
529  - mrpt::utils::CImage constructor from a matrix crashed.
530  - Unit tests: Named semaphores are not tested anymore if it's detected that the kernel version doesn't support them (Fix Debian 758725).
531  - mrpt::synch::CSemaphore [Linux]: didn't call sem_unlink().
532  - mrpt::gui::CDisplayWindow3D didn't implement get/set FOV.
533  - Valgrind: Fixed potential unaligned memory access warning in point clouds.
534  - Fix build error with AppleClang 5.1 (Closes #71).
535  - mrpt::utils::CClientTCPSocket: Use a connection success check that works on all platforms
536  - Important bug fixed regarding a missing dynamic_cast<> in smart pointers casting. See above possible implications in user code.
537  properly (Patch by Joe Burmeister).
538 
539 <hr>
540 <a name="1.2.1">
541  <h2>Version 1.2.1: Released 10-JUL-2014 </h2></a>
542  - Changes in classes:
543  - [mrpt-base]
544  - All points and poses now have a method setToNaN(), e.g. mrpt::poses::CPose3D::setToNaN()
545  - [mrpt-hwdrivers]
546  - mrpt::hwdrivers::COpenNI2Sensor now has better support for opening several RGBD cameras (by Kenzaburo Miyawaki & Eduardo Fernandez)
547  - Build system:
548  - Fix compilation of SRBA with DEBUG_GARBAGE_FILL_ALL_NUMS=1
549  - Fix de-serialization error in mrpt::reactivenav::CLogFileRecord (and new unit tests added to avoid regressions).
550  - Several Debian bugs closed (see packaging/debian/changelog), including build errors in uncommon platforms (MIPS, kFreeBSD, etc.)
551 
552 <hr>
553 <a name="1.2.0">
554  <h2>Version 1.2.0: Released 25-JUN-2014 </h2></a>
555  - <b>Most important changes:</b>
556  - Public header files (.h) have undergone a serious refactoring to minimize unnecesary dependencies and reduce compile time and memory as much as possible.
557  As a side effect, user code might need to add new #include<> lines. This change justifies the new minor version series 1.2.X.
558  - MRPT now cleanly builds in clang and OSX.
559  - Support for new camera drivers (OpenNI2, DUO3D).
560  - Many bug fixes.
561  - <b>Detailed list of changes:</b>
562  - Changes in apps:
563  - [rawlog-edit](http://www.mrpt.org/Application%3Arawlog-edit):
564  - New operations: --export-odometry-txt, --recalc-odometry
565  - New flag: --rectify-centers-coincide
566  - New examples:
567  - kitti_dataset2rawlog
568  - New classes:
569  - [mrpt-base]
570  - mrpt::math::ContainerType<CONTAINER>::element_t to allow handling either Eigen or STL containers seamlessly.
571  - mrpt::utils::CConfigFilePrefixer
572  - [mrpt-hwdrivers]
573  - mrpt::hwdrivers::COpenNI2Sensor: Interface to OpenNI2 cameras, capable of reading from an array of OpenNI2 RGBD cameras (By Eduardo Fernandez)
574  - mrpt::hwdrivers::CDUO3DCamera: Interface to DUO3D cameras (By Francisco Angel Moreno)
575  - mrpt::hwdrivers::CGPS_NTRIP: A combination of GPS receiver + NTRIP receiver capable of submitting GGA frames to enable RTCM 3.0
576  - [mrpt-obs]
577  - mrpt::obs::CObservation6DFeatures
578  - Changes in classes:
579  - [mrpt-base]
580  - Robust kernel templates moved from mrpt::vision to mrpt::math. See mrpt::math::RobustKernel<>. Added unit tests for robust kernels.
581  - mrpt::poses::CPose3D has new SE(3) methods: mrpt::poses::CPose3D::jacob_dexpeD_de(), mrpt::poses::CPose3D::jacob_dAexpeD_de()
582  - More efficient mrpt::utils::OctetVectorToObject() (avoid memory copy).
583  - Fixed const-correctness of mrpt::utils::CImage::forceLoad() and mrpt::utils::CImage::unload()
584  - [mrpt-hwdrivers]
585  - mrpt::hwdrivers::CCameraSensor: Added a hook for user code to run before saving external image files: mrpt::hwdrivers::CCameraSensor::addPreSaveHook()
586  - mrpt::hwdrivers::CNationalInstrumentsDAQ now supports analog and digital outputs.
587  - New method mrpt::hwdrivers::CNTRIPClient::sendBackToServer()
588  - [mrpt-srba]
589  - Now also implements SE(3) relative graph-slam.
590  - [mrpt-vision]
591  - mrpt::vision::checkerBoardStereoCalibration: More robust handling of stereo calibration patterns. OpenCV sometimes detects corners in the wrong order between (left/right) images, so we detect the situation and fix it.
592  - mrpt::vision::findMultipleChessboardsCorners():
593  - Now enforces a consistent counterclockwise XYZ coordinate frame at each detected chessboard.
594  - Much more robust in distingishing quads of different sizes.
595  - Build system / public API:
596  - Fixes to build in OS X - [Patch](https://gist.github.com/randvoorhies/9283072) by Randolph Voorhies.
597  - Removed most "using namespace" from public headers, as good practice.
598  - Refactoring of MRPT headers.
599  - <mrpt/utils/stl_extensions.h> has been split into:
600  - <mrpt/utils/stl_serialization.h>
601  - <mrpt/utils/circular_buffer.h>
602  - <mrpt/utils/list_searchable.h>
603  - <mrpt/utils/bimap.h>
604  - <mrpt/utils/map_as_vector.h>
605  - <mrpt/utils/traits_map.h>
606  - <mrpt/utils/stl_serialization.h>
607  - <mrpt/utils/printf_vector.h>
608  - <mrpt/utils/stl_containers_utils.h>
609  - <mrpt/utils/ci_less.h>
610  - Deleted methods and functions:
611  - mrpt::system::breakpoint()
612  - mrpt::vector_float is now mrpt::math::CVectorFloat, mrpt::vector_double is mrpt::math::CVectorDouble, for name consistency. Also, using Eigen::VectorXf is preferred for new code.
613  - mrpt::CImage::rectifyImage() with parameters as separate vectors.
614  - mrpt::maps::CPointsMap::getPoint() with mrpt::poses::CPoint3D arguments.
615  - mrpt::vision::correctDistortion() -> use CImage method instead
616  - All previous deprecated functions.
617  - Embedded Eigen updated to version 3.2.1 [(commit)](https://github.com/MRPT/mrpt/commit/47913da94a27e98a9115f85b2a530b6c14a10b8f) [(commit)](https://github.com/MRPT/mrpt/commit/33258761d3b75bf133d38aecb257c64e4d76b21e)
618  - BUG FIXES:
619  - RawlogViewer app: Fixed abort while converting SF->obs.only datasets when there is no odometry.
620  - mrpt::obs::CSensoryFrame: The cached point map is now invalidated with any change to the list of observations so it's rebuild upon next call.
621  - New implementation of mrpt::synch::CSemaphore avoids crashes in OS X - by Randolph Voorhies.
622  - mrpt::opengl::CArrow was always drawn of normalized length.
623  - FlyCapture2 monocular & stereo cameras could return an incorrect timestamp (only in Linux?).
624  - mrpt::system::createDirectory() returned false (error) when the directory already existed.
625  - mrpt::vision::CStereoRectifyMap::rectify() didn't update the left & right camera poses inside mrpt::obs::CObservationStereoImages objects while rectifying.
626  - RawLogViewer: Operation "convert to SF format" didn't take into account odometry observations.
627  - Fix build errors with GCC 4.9
628  - Fix crash of mrpt::hwdrivers::CIMUXSens_MT4's destructor when it fails to scan and open a device.
629  - Fix potential crash in mrpt::slam::data_association_full_covariance with JCBB when no individually compatible matching exists [(commit)](https://github.com/MRPT/mrpt/commit/482472ebd80a3484dce63d294b1ac4e8f001e1eb)
630 
631 <hr>
632  <a name="1.1.0">
633  <h2>Version 1.1.0: Released 22-FEB-2014 </h2></a>
634  - New apps:
635  - [DifOdometry-Camera](http://www.mrpt.org/list-of-mrpt-apps/application-difodometry-camera). (By Mariano Jaimez Tarifa)
636  - [DifOdometry-Datasets](http://www.mrpt.org/list-of-mrpt-apps/application-difodometry-datasets). (By Mariano Jaimez Tarifa)
637  - New classes:
638  - [mrpt-base]
639  - mrpt::synch::CPipe: OS-independent pipe support.
640  - [mrpt-hwdrivers]
641  - mrpt::hwdrivers::CIMUXSens_MT4 : Support for 4th generation xSens MT IMU devices.
642  - mrpt::hwdrivers::CNationalInstrumentsDAQ: Support for acquisition boards compatible with National Instruments DAQmx Base - [(commit)](https://github.com/MRPT/mrpt/commit/a82a7e37997cfb77e7ee9e903bdb2a55e3040b35).
643  - mrpt::hwdrivers::CImageGrabber_FlyCapture2: Support for Point Grey Research's cameras via the FlyCapture2 libray - [(commits)](https://github.com/MRPT/mrpt/pull/5/commits).
644  - [mrpt-maps]
645  - There are now two versions of octomaps (by Mariano Jaimez Tarifa/Jose Luis Blanco) - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3443)
646  - mrpt::maps::COctoMap (only occupancy)
647  - mrpt::maps::CColouredOctoMap (occupancy + RGB color)
648  - [mrpt-obs]
649  - mrpt::obs::CObservationRawDAQ, a placeholder for raw and generic measurements from data acquisition devices. - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3459)
650  - [mrpt-opengl]
651  - mrpt::opengl::CMeshFast, an open gl object that draws a "mesh" as a structured point cloud which is faster to render (by Mariano Jaimez Tarifa). -[(commit)](https://github.com/MRPT/mrpt/commit/9306bb4a585387d4c85b3f6e41dd2cbe5a354e80)
652  - mrpt::opengl::CVectorField2D, an opengl object that shows a 2D Vector Field (by Mariano Jaimez Tarifa). - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3461)
653  - [mrpt-reactivenav]
654  - mrpt::reactivenav::CAbstractPTGBasedReactive, as part of a large code refactoring of these classes: [(commit)](https://github.com/MRPT/mrpt/pull/4)
655  - mrpt::reactivenav::CReactiveNavigationSystem
656  - mrpt::reactivenav::CReactiveNavigationSystem3D
657  - [mrpt-vision]
658  - mrpt::vision::CDifodo, a class which implements visual odometry based on depth images and the "range flow constraint equation". (by Mariano Jaimez Tarifa) - [(commit)](https://github.com/MRPT/mrpt/commit/e6ab5595f70cb889d07658c0b540c27e495a1cfb)
659  - Changes in classes:
660  - Clean up and slight optimization of metric map matching API: - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3446)
661  - <b>Methods marked as deprecated: </b>
662  - mrpt::maps::CMetricMap::computeMatchingWith2D() --> mrpt::maps::CMetricMap::determineMatching2D()
663  - mrpt::maps::CMetricMap::computeMatchingWith3D() --> mrpt::maps::CMetricMap::determineMatching3D()
664  - New structures:
665  - mrpt::slam::TMatchingParams
666  - mrpt::slam::TMatchingExtraResults
667  - mrpt::maps::CPointsMap::TInsertionOptions now have methods to save/load from binary streams, making more maintainable the serialization of point maps - [(commit)](https://github.com/MRPT/mrpt/commit/544d439c3462228b07344142de68e5bc10c1a2e3)
668  - New options in point maps: mrpt::maps::CPointsMap::TInsertionOptions::insertInvalidPoints - [(commit)](https://github.com/MRPT/mrpt/pull/8)
669  - mrpt::obs::CObservationIMU now includes data fields for 3D magnetometers and altimeters. - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3451)
670  - Method renamed mrpt::utils::CEnhancedMetaFile::selectVectorTextFont() to avoid shadowing mrpt::utils::CCanvas::selectTextFont()
671  - mrpt::reactivenav::CParameterizedTrajectoryGenerator: New methods:
672  - mrpt::reactivenav::CParameterizedTrajectoryGenerator::inverseMap_WS2TP() for inverse look-up of WS to TP space - [(commit)](https://github.com/MRPT/mrpt/commit/4d04ef50e3dea581bed6287d4ea6593034c47da3)
673  - mrpt::reactivenav::CParameterizedTrajectoryGenerator::renderPathAsSimpleLine() - [(commit)](https://github.com/MRPT/mrpt/commit/a224fc2489ad00b3ab116c84e8d4a48532a005df)
674  - Changed the signature of mrpt::reactivenav::build_PTG_collision_grids() to become more generic for 2D & 2.5D PTGs - [(commit)](https://github.com/MRPT/mrpt/commit/7bd68e49a4ba3bf08f194678787816c65de1d685)
675  - Deleted classes:
676  - mrpt::utils::CEvent, which was actually unimplemented (!)
677  - mrpt::hwdrivers::CInterfaceNI845x has been deleted. It didn't offer features enough to justify a class.
678  - New examples:
679  - [MRPT]/samples/threadsPipe
680  - [MRPT]/samples/NIDAQ_test
681  - [MRPT]/openNI2_RGBD_demo (by Mariano Jaimez Tarifa)
682  - [MRPT]/openNI2_proximity_demo (by Mariano Jaimez Tarifa)
683  - Build system:
684  - Fixed compilation with clang.
685  - Fixed building against OpenCV 3.0.0 (GIT head)
686  - Updated to the latest nanoflann 1.1.7.
687  - Updated to Eigen 3.2.0 - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3455)
688  - Binary packages for Windows now include .pdb files to help debugging with Visual Studio.
689  - BUG FIXES:
690  - Fixed potential infinity loop in mrpt::math::make_vector<1,T>()
691  - Fixed build error with GCC when experimental parallelization is enabled. [(commit)](http://code.google.com/p/mrpt/source/detail?r=3441)
692  - mrpt::reactivenav::CReactiveNavigationSystem complained about missing config variables ROBOTMODEL_TAU & ROBOTMODEL_DELAY, which were removed in MRPT 1.0.2 - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3452)
693  - Fixed potential mem alignment errors (Eigen's UnalignedArrayAssert) in SRBA for 32bit builds. [(commit)](http://code.google.com/p/mrpt/source/detail?r=3457)
694  - mrpt::topography::geodeticToENU_WGS84() and related functions used a local +Z axis aligned to the line towards the Earth center; now the Z axis points normally to the ellipsoid surface. The difference with the previous behavior is small but may be of a few millimeters for each meter from the reference point. [(commit)](http://code.google.com/p/mrpt/source/detail?r=3473)
695  - Potential crash when setting mpPolygon::setPoints() with empty vectors - [(commit)](http://code.google.com/p/mrpt/source/detail?r=3478)
696  - mrpt::reactivenav::CReactiveNavigationSystem and mrpt::reactivenav::CReactiveNavigationSystem3D didn't obey the "enableConsoleOutput" constructor flag - [(commit)](https://github.com/MRPT/mrpt/commit/db7b0e76506af2c24f119a28443a1e8f1a217861)
697  - mrpt::synch::CSemaphore::waitForSignal() : Fixed error when thread got an external signal [(commit)](https://github.com/MRPT/mrpt/commit/511e95f03480537ff18ad2cad178c504b1cfbb53)
698 
699  <hr>
700  <a name="1.0.2">
701  <h2>Version 1.0.2: Released 2-AUG-2013 (SVN 3435) </h2></a>
702  - New apps:
703  - [ReactiveNav3D-Demo](http://www.mrpt.org/Application%3AReactiveNav3D-Demo) (By Mariano Jaimez Tarifa)
704  - Changes in apps:
705  - [rawlog-edit](http://www.mrpt.org/Application%3Arawlog-edit):
706  - New operations: --list-timestamps, --remap-timestamps, --export-2d-scans-txt, --export-imu-txt
707  - New classes:
708  - [mrpt-base]
709  - mrpt::poses::CPose3DRotVec is now fully implemented (By Francisco Angel Moreno).
710  - [mrpt-opengl]
711  - mrpt::opengl::CLight - OpenGL scenes now allow customization of OpenGL lighting. See also new lighting methods in mrpt::opengl::COpenGLViewport - <a href="http://code.google.com/p/mrpt/source/detail?r=3409" >r3409</a>
712  - [mrpt-reactivenav]
713  - mrpt::reactivenav::CReactiveNavigationSystem3D - By Mariano Jaimez Tarifa - <a href="http://code.google.com/p/mrpt/source/detail?r=3389" >r3389</a>
714  - New functions:
715  - [mrpt-opengl]
716  - mrpt::opengl::stock_objects::RobotRhodon()
717  - Changes in classes:
718  - [mrpt-base]
719  - Generic particle filter classes now allow directly resampling to a dynamic number of particles. Affected methods: - <a href="http://code.google.com/p/mrpt/source/detail?r=3381" >r3381</a>
720  - mrpt::bayes::CParticleFilterCapable::performResampling()
721  - mrpt::bayes::CParticleFilterCapable::computeResampling()
722  - New method: CImage::loadFromXPM() - <a href="http://code.google.com/p/mrpt/source/detail?r=3397" >r3397</a>
723  - [mrpt-maps]
724  - mrpt::maps::COctoMap now exposes the inner octomap::OcTree object. See example samples/octomap_simple - <a href="http://code.google.com/p/mrpt/source/detail?r=4304" >r4304</a>
725  - [mrpt-openg]
726  - mrpt::opengl::CBox now be also rendered as a solid box + line borders. See mrpt::opengl::CBox::enableBoxBorder()
727  - mrpt::opengl::COctoMapVoxels - <a href="http://code.google.com/p/mrpt/source/detail?r=4329" >r4329</a>
728  - Fixed calculation of normals (fix shading)
729  - Added new coloring scheme to mrpt::opengl::COctoMapVoxels::visualization_mode_t : "FIXED"
730  - By default, light effects are disabled in this object, because shadows aren't computed anyway and the effect isn't pleasant.
731  - Voxels cubes are sorted in ascending Z order so the visual effect is correct when rendering with transparency.
732  - [mrpt-reactivenav]
733  - mrpt::reactivenav::CParameterizedTrajectoryGenerator: The "low pass filter" has been removed since it wasn't practical and was never used; thus, parameters "TAU" and "DELAY" has been removed. - <a href="http://code.google.com/p/mrpt/source/detail?r=3395" >r3395</a>
734  - Methods removed since they weren't implemented in any derived class and there are no plans for doing it.
735  - mrpt::reactivenav::CReactiveNavigationSystem ::evaluate()
736  - mrpt::reactivenav::CReactiveNavigationSystem ::setParams()
737  - Build system:
738  - Updated to nanoflann 1.1.7: ICP is ~5% faster.
739  - More unit tests:
740  - [mrpt-base] geometry module.
741  - BUG FIXES:
742  - CTimeLogger::registerUserMeasure() ignored the enable/disable state of the logger - <a href="http://code.google.com/p/mrpt/source/detail?r=3382" >r3382</a>
743  - mrpt-srba: SEGFAULT in 32bit builds due to missing MRPT_MAKE_ALIGNED_OPERATOR_NEW - <a href="http://code.google.com/p/mrpt/source/detail?r=3429" >r3429</a>
744 
745  <br/>
746  <hr>
747  <a name="1.0.1">
748  <h2>Version 1.0.1: Released 12-MAY-2013 (SVN 3370) </h2></a>
749  - Changes in apps:
750  - <a href="http://www.mrpt.org/Application%3ARawLogViewer" >RawLogViewer</a>:
751  - Better description of the "too much memory used" warning while loading large datasets.
752  - <a href="http://www.mrpt.org/Application%3Arobotic-arm-kinematics" >robotic-arm-kinematics</a>:
753  - Now allows changing the orientation of the first DOF (X,Y,Z).
754  - New classes:
755  - [mrpt-hwdrivers]
756  - mrpt::hwdrivers::CInterfaceNI845x: An interface for this USB SPI/I2C data acquisition board.
757  - mrpt::hwdrivers::CCANBusReader: A class to record CAN bus frames with a CAN232 converter.
758  - [mrpt-obs]
759  - mrpt::obs::CObservationCANBusJ1939
760  - New functions:
761  - New opengl_stock objects:
762  - mrpt::opengl::stock_objects::Hokuyo_URG()
763  - mrpt::opengl::stock_objects::Hokuyo_UTM()
764  - mrpt::opengl::stock_objects::Househam_Sprayer()
765  - mrpt::math::saveEigenSparseTripletsToFile() - <a href="http://code.google.com/p/mrpt/source/detail?r=3351" >r3351</a>
766  - New examples:
767  - gmrf_map_demo
768  - Changes in classes:
769  - [mrpt-maps]
770  - mrpt::maps::COccupancyGridMap2D now also evalutes likelihoods for sonar-like observations (mrpt::obs::CObservationRange), allowing particle-filter localization with these sensors - <a href="http://code.google.com/p/mrpt/source/detail?r=3330" >r3330</a>
771  - New method mrpt::slam::CRandomFieldGridMap2D::insertIndividualReading()
772  - [mrpt-kinematics]
773  - mrpt::kinematics::CKinematicChain: Now allows changing the orientation of the first DOF (X,Y,Z).
774  - Removed stuff:
775  - Backwards-compatibility typedef mrpt::vision::TKLTFeatureStatus has been removed. Replace with mrpt::vision::TFeatureTrackStatus
776  - KLT-specific values for mrpt::vision::TFeatureTrackStatus has been removed, since they were not used in detected features anyway.
777  - Build system:
778  - Fixed a potential build error if including FFMPEG's <time.h> instead of the standard header - <a href="http://code.google.com/p/mrpt/source/detail?r=3316" >r3316</a>
779  - Fixed determination of GCC version for all GCC builds - <a href="http://code.google.com/p/mrpt/source/detail?r=3324" >r3324</a>
780  - Updated to Eigen 3.1.3 - <a href="http://code.google.com/p/mrpt/source/detail?r=3349" >r3349</a>
781  - Updated to nanoflann 1.1.5
782  - BUG FIXES:
783  - Unit tests "SchurTests" for mrpt-srba incorrectly reported errors due to an improperly initialized reference to a local variable - <a href="http://code.google.com/p/mrpt/source/detail?r=3318" >r3318</a>
784  - Debian packages: added missing binary deps for libmrpt-dev - <a href="http://code.google.com/p/mrpt/source/detail?r=3335" >r3335</a>
785 
786  <hr>
787  <a name="1.0.0">
788  <h2>Version 1.0.0: Released 1-MAR-2013 (SVN 3287) </h2></a>
789  - <b>Most important changes:</b>
790  - New library with a flexible implementation of Sparser Relative Bundle Adjustment (RBA), as presented in ICRA 2013: <a href="http://www.mrpt.org/srba" >mrpt-srba</a>.
791  - New library for Plane-based Maps: <a href="group__mrpt__pbmap__grp.html" >mrpt-pbmap</a> (also presented in ICRA 2013).
792  - Some MRPT modules are now header-only libraries.
793  - Support for a new Octomap metric map, via the octomap library. See mrpt::maps::COctoMap and detailed changes below.
794  - Support for importing/exporting point clouds in the standard LAS format (Look for liblas below).
795  - Better support for custom builds of MRPT (selective building of individual apps and libs, etc.)
796  - Ready for Visual Studio 2012 and GCC 4.7
797  - From now on, MRPT is released under the "New BSD" license.
798  - Many bug fixes.
799  - <b>Detailed list of changes:</b>
800  - New apps:
801  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-srba-slam" >srba-slam</a>: A command-line frontend for the Relative Bundle Adjustment engine in mrpt-srba.
802  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-holonomic-navigator-demo" >holonomic-navigator-demo</a>
803  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-robotic-arm-kinematics" >robotic-arm-kinematics</a>: A GUI for experimenting with Denavit-Hartenberg parameters.
804  - Changes in apps:
805  - <a href="http://www.mrpt.org/Application%3Anavlog-viewer" >navlog-viewer</a>:
806  - Fixed some minor visualization errors.
807  - <a href="http://www.mrpt.org/Application%3ARawLogViewer" >RawLogViewer</a>:
808  - Import sequence of images as rawlog: Didn't detect "png" file extension as images - <a href="http://code.google.com/p/mrpt/source/detail?r=2940" >r2940</a> - Closes <a href="http://code.google.com/p/mrpt/issues/detail?id=34" >#34</a>
809  - The GUI toolbar has been ported from wxWidget's ToolBar to sets of wxCustomButton's to avoid visualization problems in wx 2.9.X - <a href="http://code.google.com/p/mrpt/source/detail?r=2950" >r2950</a>
810  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-ReactiveNavigationDemo" >ReactiveNavigationDemo</a>:
811  - The default holonomic navigation method is now the VFF, since after the last bug fixes and tunes it seems to work quite well.
812  - <a href="http://www.mrpt.org/Application%3ASceneViewer" >SceneViewer3D</a>:
813  - The GUI toolbar has been ported from wxWidget's ToolBar to sets of wxCustomButton's to avoid visualization problems in wx 2.9.X - <a href="http://code.google.com/p/mrpt/source/detail?r=2952" >r2952</a>
814  - Added a new menu: "File -> Import -> From LAS file..." - <a href="http://code.google.com/p/mrpt/source/detail?r=3244" >r3244</a>
815  - <a href="http://www.mrpt.org/Application%3Agrid-matching" >grid-matching</a>: new argument "--aligner" to select aligner method - <a href="http://code.google.com/p/mrpt/source/detail?r=3021" >r3021</a>
816  - New classes:
817  - [mrpt-base]
818  - mrpt::math::MatrixBlockSparseCols, a templated column-indexed efficient storage of block-sparse Jacobian or Hessian matrices, together with other arbitrary information - <a href="http://code.google.com/p/mrpt/source/detail?r=2995" >r2995</a>
819  - mrpt::utils::ignored_copy_ptr<>
820  - mrpt::utils::CTimeLoggerEntry
821  - [mrpt-obs]
822  - mrpt::obs::CObservationWindSensor - <a href="http://code.google.com/p/mrpt/source/detail?r=3050" >r3050</a>
823  - [mrpt-maps]
824  - mrpt::maps::COctoMap
825  - [mrpt-opengl]
826  - mrpt::opengl::COctoMapVoxels
827  - Deleted classes:
828  - [mrpt-vision]
829  - CFeatureTracker_FAST and CFeatureTracker_PatchMatch have been removed since they didn't work robustly. Replace with mrpt::vision::CFeatureTracker_KL
830  - New libraries:
831  - [mrpt-kinematics] See mrpt::kinematics
832  - [mrpt-pbmap] See <a href="group__mrpt__pbmap__grp.html" >mrpt-pbmap</a>.
833  - [mrpt-srba] See <a href="http://www.mrpt.org/srba" >mrpt-srba</a>.
834  - Changes in libraries:
835  - These libs are now header-only: <a href="http://code.google.com/p/mrpt/source/detail?r=3035" >r3035</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3045" >r3045</a>
836  - [mrpt-bayes]
837  - [mrpt-graphs]
838  - [mrpt-graphslam]
839  - Integration of the Octomap C++ library (new BSD License) by Kai M. Wurm et al.: <a href="http://code.google.com/p/mrpt/source/detail?r=3081" >r3081</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3083" >r3083</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3084" >r3084</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3086" >r3086</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3087" >r3087</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3088" >r3088</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3093" >r3093</a>
840  - The main new classes are mrpt::maps::COctoMap & mrpt::opengl::COctoMapVoxels
841  - mrpt::maps::CMultiMetricMap now allows the seamless integration of octomaps in many MRPT map building or localization algorithms.
842  - New example: samples/octomap_simple
843  - Changes in classes:
844  - [mrpt-base]
845  - Eigen::MatrixBase<Derived>::loadFromTextFile(), and all MRPT derived matrix classes, are now much faster loading huge matrices from text files - <a href="http://code.google.com/p/mrpt/source/detail?r=2997" >r2997</a>
846  - The typedef Eigen::MatrixBase<Derived>::typename of MRPT's plugin to Eigen classes has been REMOVED, to avoid conflicts with some part of Eigen's sparse classes. Use Matrix::Scalar instead - <a href="http://code.google.com/p/mrpt/source/detail?r=3065" >r3065</a>
847  - New method mrpt::poses::CPose3DQuat::inverse()
848  - New methods mrpt::poses::SE_traits::pseudo_exp()
849  - mrpt::utils::CTimeLogger:
850  - New method mrpt::utils::CTimeLogger::getStats() for programatic execution time stats analysis - <a href="http://code.google.com/p/mrpt/source/detail?r=2998" >r2998</a>
851  - New method mrpt::utils::CTimeLogger::registerUserMeasure() for making stats of user-providen values - <a href="http://code.google.com/p/mrpt/source/detail?r=3005" >r3005</a>
852  - mrpt::utils::map_as_vector<> can be now customized to use different underlying STL containers for storage - <a href="http://code.google.com/p/mrpt/source/detail?r=3001" >r3001</a>
853  - mrpt::utils::CDynamicGrid::setSize() now also accepts a "fill_value" argument.
854  - Added method mrpt::math::TPoint2D::norm() for consistency with mrpt::math::TPoint3D
855  - Better support for saving (and not only loading) plain text configuration files, including commented files with default values of all existing parameters: - <a href="http://code.google.com/p/mrpt/source/detail?r=2954" >r2954</a>
856  - All mrpt::utils::CConfigFileBase::write() now have an extended signature for formatting.
857  - mrpt::utils::CLoadableOptions::dumpToTextStream() is no longer pure virtual: it now relies on mrpt::utils::CLoadableOptions::saveToConfigFile()
858  - mrpt::utils::CStream::Seek() now supports files larger than 2GB by using uint64_t instead of long (still see issue report for another patch required for MSVC2010) - (Closes <a href="http://code.google.com/p/mrpt/issues/detail?id=39" >issue 39</a>, thanks Robert Schattschneider) - <a href="http://code.google.com/p/mrpt/source/detail?r=3042" >r3042</a>
859  - mrpt::utils::TTypeName<> moved to its own header <mrpt/utils/TTypeName.h> while refactoring <mrpt/utils/CSerializable.h> - <a href="http://code.google.com/p/mrpt/source/detail?r=3044" >r3044</a>
860  - mrpt::utils::CConfigFileBase::write() now has signatures for "uint32_t" and "uint64_t" in both 32 and 64bit builds, instead of relying of the "size_t" type. This was done to fix build errors in some GCC versions under 32bits.
861  - mrpt::poses::CPose2D now caches the cos() and sin() of phi, with a huge performance improvement in most common operations.
862  - [mrpt-bayes]
863  - mrpt::bayes::CKalmanFilterCapable (and all EKF-SLAM methods based on it) are now much faster. The implementation now exploits the sparsity of the Jacobian (~25% faster in a test 6D EKF-SLAM dataset) - <a href="http://code.google.com/p/mrpt/source/detail?r=3059" >r3059</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3060" >r3060</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3061" >r3061</a>
864  - mrpt::bayes::CParticleFilterCapable now makes use of the Curiously Recurring Template Pattern (CRTP) design instead of ugly #define macros - <a href="http://code.google.com/p/mrpt/source/detail?r=3182" >r3182</a>
865  - [mrpt-graphs]
866  - mrpt::graphs::CNetworkOfPoses2D, mrpt::graphs::CNetworkOfPoses3D,... and so on, are now all typedef's instead of classes, since serialization is now implemented as pure templatized code, thus avoiding the need to declare derived auxiliary classes - <a href="http://code.google.com/p/mrpt/source/detail?r=3044" >r3044</a>
867  - [mrpt-gui]
868  - mrpt::gui::CDisplayWindow3D::addTextMessage() (and other opengl text routines) now allows drawing text with a shadow effect - <a href="http://code.google.com/p/mrpt/source/detail?r=3007" >r3007</a>
869  - [mrpt-hwdrivers]
870  - New method mrpt::hwdrivers::CActivMediaRobotBase::areMotorsEnabled()
871  - mrpt::hwdrivers::CGenericSensor (and all derived classes) now allocate objects aligned in memory with MRPT_MAKE_ALIGNED_OPERATOR_NEW
872  - New static method mrpt::hwdrivers::CGPSInterface::parse_NMEA()
873  - [mrpt-maps]
874  - Better integration of point cloud classes with PCL: - <a href="http://code.google.com/p/mrpt/source/detail?r=2943" >r2943</a>
875  - mrpt::maps::CPointsMap::loadPCDFile()
876  - mrpt::maps::CPointsMap::setFromPCLPointCloud()
877  - mrpt::maps::CColouredPointsMap::setFromPCLPointCloudRGB()
878  - Point cloud loading & saving in the standard ASPRS LiDAR LAS format (if liblas is installed in the system, see http://www.liblas.org/ ). See also the ready-to-use import menu in SceneViewer3D - <a href="http://code.google.com/p/mrpt/source/detail?r=3244" >r3244</a>
879  - mrpt::maps::CPointsMap::loadLASFile()
880  - mrpt::maps::CPointsMap::saveLASFile()
881  - Integration of wind measurements in gas-concentration maps (by Javier G. Monroy) - <a href="http://code.google.com/p/mrpt/source/detail?r=3050" >r3050</a>
882  - [mrpt-obs]
883  - New method mrpt::obs::CObservationGPS::clear()
884  - [mrpt-opengl]
885  - Evaluation of bounding box of opengl objects. New methods: - <a href="http://code.google.com/p/mrpt/source/detail?r=3026" >r3026</a>
886  - mrpt::opengl::CRenderizable::getBoundingBox()
887  - mrpt::opengl::COpenGLScene::getBoundingBox()
888  - mrpt::opengl::COpenGLViewport::getBoundingBox()
889  - mrpt::opengl::COctreePointRenderer::octree_get_graphics_boundingboxes() has a new flag to draw solid boxes at each leaf node - <a href="http://code.google.com/p/mrpt/source/detail?r=3033" >r3033</a>
890  - mrpt::opengl::COpenGLViewport has a new set of "global OpenGL switches" that affect the rendering of entire scenes - <a href="http://code.google.com/p/mrpt/source/detail?r=3185" >r3185</a>
891  - Classes drawing lines now by default enable anti-aliasing (can be disabled by the programmer): - <a href="http://code.google.com/p/mrpt/source/detail?r=3185" >r3185</a>
892  - mrpt::opengl::CGridPlaneXY, mrpt::opengl::CGridPlaneXZ
893  - mrpt::opengl::CSimpleLine
894  - mrpt::opengl::CSetOfLines
895  - [mrpt-reactivenav]
896  - Much code of mrpt::reactivenav classes have undergone a clean-up, slight optimizations and a translation of old Spanish names/comments to English - <a href="http://code.google.com/p/mrpt/source/detail?r=2939" >r2939</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=2942" >r2942</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=2958" >r2958</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3091" >r3091</a>
897  - mrpt::reactivenav::CParameterizedTrajectoryGenerator::CCollisionGrid now has a more maintainable binary serialization format - <a href="http://code.google.com/p/mrpt/source/detail?r=2939" >r2939</a>
898  - mrpt::reactivenav::CParameterizedTrajectoryGenerator::debugDumpInFiles() now also saves text files which can be used to visualize PTGs from MATLAB (see scripts/viewPTG.m) - <a href="http://code.google.com/p/mrpt/source/detail?r=3009" >r3009</a>
899  - mrpt::reactivenav::CHolonomicVFF and mrpt::reactivenav::CHolonomicND now have more configurable parameters, loadable from config files. See their documentation.
900  - Repulsive forces from obstacles in mrpt::reactivenav::CHolonomicVFF are now automatically normalized wrt the density of the 360deg view of obstacles and forces follow a "1/range" law instead of the old "exp(-range)".
901  - Solved a stability issue in C-S paths, in mrpt::reactivenav::CPTG_DiffDrive_CS (By Mariano Jaimez Tarifa) - <a href="http://code.google.com/p/mrpt/source/detail?r=3085" >r3085</a>
902  - [mrpt-scanmatching]
903  - mrpt::scanmatching::robustRigidTransformation():
904  - Changed behavior not to allow features to appear in duplicated pairings.
905  - Added a consistency test to avoid seeding RANSAC with an inconsistent initial model.
906  - [mrpt-slam]
907  - mrpt::slam::CMetricMapBuilderICP now does not integrate the small pose changes due to odometry and/or relocalization when considering the distance and angle thresholds. This means that fewer map updates are now done for the same ICP-SLAM parameters, which should lead to "less noisy" maps.
908  - New functions:
909  - [mrpt-base]
910  - mrpt::utils::abs_diff()
911  - mrpt::system::getMRPTLicense()
912  - mrpt::system::getFileModificationTime()
913  - mrpt::math::noncentralChi2PDF_CDF() is now exposed (was private)
914  - mrpt::utils::sprintf_container()
915  - mrpt::poses::operator -(mrpt::poses::CPose3DQuat)
916  - max3() and min3() moved from the global namespace to mrpt::utils::max3() and mrpt::utils::min3()
917  - New examples:
918  - octomap_simple
919  - ransac-data-association
920  - Build system:
921  - Update to nanoflann 1.1.4 - <a href="http://code.google.com/p/mrpt/source/detail?r=2937" >r2937</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3017" >r3017</a>
922  - Update to Eigen 3.1.2 - <a href="http://code.google.com/p/mrpt/source/detail?r=3064" >r3064</a>
923  - MRPT's root "CMakeLists.txt" has undergone a big refactoring and cleanup - <a href="http://code.google.com/p/mrpt/source/detail?r=2961" >r2961</a>
924  - Backward compatible "mrpt-core" has been removed as a fake lib for which to search with CMake from user programs - <a href="http://code.google.com/p/mrpt/source/detail?r=2961" >r2961</a>
925  - More system libs are detected in Linux (libclang-dev, lib3ds-dev), discarding embedded versions then - <a href="http://code.google.com/p/mrpt/source/detail?r=2963" >r2963</a> - <a href="http://code.google.com/p/mrpt/issues/detail?id=17" >Closes #17</a>
926  - Automatic detection of supported SIMD extensions (SSE*) from CMake (only for Linux OS) - <a href="http://code.google.com/p/mrpt/source/detail?r=3013" >r3013</a>
927  - Fixed building with Visual Studio 2012 (MSVC11) - <a href="http://code.google.com/p/mrpt/source/detail?r=3017" >r3017</a>
928  - MRPT now allows defining header-only libraries with the define_mrpt_lib_header_only() macro - <a href="http://code.google.com/p/mrpt/source/detail?r=3034" >r3034</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=3035" >r3035</a>
929  - More unit tests:
930  - for all probability distribution functions in mrpt::math,
931  - for the parser in mrpt::hwdrivers::CGPSInterface::parse_NMEA()
932  - for the octomap map
933  - for serialization/deserealization of many classes.
934  - Added new documentation page: <a href="env-vars.html" >environment variables</a>.
935  - Removed the build flag "MRPT_BACKCOMPATIB_08X".
936  - Fixes for building under Mac OSX: <a href="http://code.google.com/p/mrpt/source/detail?r=3181" >r3181</a>
937  - Enable some c++11 features if the compiler supports them - <a href="http://code.google.com/p/mrpt/source/detail?r=3273" >r3273</a>
938  - BUG FIXES:
939  - Build: Fixed detection of OpenCV 2.4.2+ installed in the system via CMake config file instead of pkg-config, which seems to be broken. - <a href="http://code.google.com/p/mrpt/source/detail?r=3019" >r3019</a>
940  - [mrpt-base] The iterator returned by end() in all MRPT vectors and matrices (based on Eigen) pointed to the last element, not to the (now correct) next position after the last element - <a href="http://code.google.com/p/mrpt/source/detail?r=2941" >r2941</a>
941  - [mrpt-base] mrpt::dynamicsize_vector::resize() performed a memory reallocation even if given the current size, due to an inherited behavior from Eigen. It is not the expected behavior, so it has been fixed. - <a href="http://code.google.com/p/mrpt/source/detail?r=3003" >r3003</a>
942  - [mrpt-base] Wrong computation of normPDF() values for the multidimensional cases. Closes <a href="http://code.google.com/p/mrpt/issues/detail?id=46" >#46</a> - <a href="http://code.google.com/p/mrpt/source/detail?r=3068" >r3068</a>
943  - [mrpt-base] mrpt::poses::CPoint::asString() confused the 2D and 3D cases (Thanks Cipri!)
944  - [mrpt-base] Fixed errors in de-serialization of mrpt::utils::CPointPDFSOG and mrpt::maps::CReflectivityGridMap2D
945  - [mrpt-base] mrpt::math::KDTreeCapable::kdTreeRadiusSearch2D() always returned 0 matched.
946  - [mrpt-graphs] Fixed bug in RecursiveSpectralPartition (Thanks to Edu!) - <a href="http://code.google.com/p/mrpt/source/detail?r=3026" >r3026</a>
947  - [mrpt-hwdrivers] Fixed potential SEGFAULT in mrpt::hwdrivers::CGPSInterface (Thanks K.Miyawaki for <a href="http://www.mrpt.org/node/2474" >reporting</a>)
948  - [mrpt-hwdrivers] Fixed communications to LMS 1xx scanners (Thanks Henry! See http://code.google.com/p/mrpt/issues/detail?id=49 )
949  - [mrpt-maps] mrpt::maps::COccupancyGridMap2D::getAs3DObject() returned cells with an occupancy of exactly "0" as transparent - <a href="http://code.google.com/p/mrpt/source/detail?r=2957" >r2957</a>
950  - [mrpt-maps] Fixed saving the correct point colors in mrpt::maps::CColouredPointsMap::savePCDFile() (Thanks Mariano!) - <a href="http://code.google.com/p/mrpt/source/detail?r=3090" >r3090</a>
951  - [mrpt-maps] In CPointsMap::computeMatchingWith3D. Fixed matching two 3D point clouds as each correspondence was inserted twice into the output vector. (By Paco) - <a href="http://code.google.com/p/mrpt/source/detail?r=3162" >r3162</a>
952  - [mrpt-opengl] Fixed a potential bug: after deserializing an object based on a display-list (most of them), it won't update in the opengl view.
953  - [mrpt-reactivenav] Class mrpt::reactivenav::CHolonomicVFF was not exported in Windows DLL's (Thanks Mariano for noticing!).
954  - [mrpt-reactivenav] Fixed wrong computation of obstacles force fields in mrpt::reactivenav::CHolonomicVFF (Thanks Mariano for noticing!) - <a href="http://code.google.com/p/mrpt/source/detail?r=2953" >r2953</a>
955  - [mrpt-reactivenav] Precomputed collision grids could be loaded in mrpt::reactivenav::CParameterizedTrajectoryGenerator even for different robot parameters/shape: now it correctly detects such situations and recompute when needed - <a href="http://code.google.com/p/mrpt/source/detail?r=2939" >r2939</a> - Closes <a href="http://code.google.com/p/mrpt/issues/detail?id=33" >#33</a>
956  - [mrpt-reactivenav] ND algorithm: Fixed bugs of "last gap is never evaluated" and wrong composition of representative direction for some gaps (By Mariano) - <a href="http://code.google.com/p/mrpt/source/detail?r=3056" >r3056</a>
957 
958 
959  <br>
960  <hr>
961  <a name="0.9.6">
962  <h2>Version 0.9.6 - (Version 1.0.0-Release_Candidate_4): Released 30-MAY-2012 (SVN 2930) </h2></a>
963  - New applications:
964  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-stereo-calibrate" >kinect-stereo-calibrate</a>: A GUI tool for calibrating RGB+D and/or stereo cameras, including live Kinect capturing.
965  - Removed applications:
966  - stereo-calib-gui: it's now superseded by kinect-stereo-gui. The old command line tool is still useful, so it's still there as the example "stereo-calib-opencv".
967  - Changes in applications:
968  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-icp-slam" >icp-slam</a>:
969  - Added a new option (SHOW_LASER_SCANS_3D in config files) to draw laser scans in the live 3D view - <a href="http://code.google.com/p/mrpt/source/detail?r=2881" >r2881</a>
970  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-rawlog-edit" >rawlog-edit</a>:
971  - Operation "--camera-params" now also handles stereo observations.
972  - New operation "--stereo-rectify" for batch rectifying datasets with stereo images.
973  - New operation "--rename-externals".
974  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-SceneViewer" >SceneViewer3D</a>:
975  - New menu for generating high-resolution renders of any scene directly to imag files - <a href="http://code.google.com/p/mrpt/source/detail?r=2775" >r2775</a>
976  - Many new menus for selective selecting objects and applying operations on them - <a href="http://code.google.com/p/mrpt/source/detail?r=2776" >r2776</a>
977  - stereo-calib-gui: Now generates a report with detailed and clear results from stereo calibration and allows the user to change most parameters interactively - <a href="http://code.google.com/p/mrpt/source/detail?r=2801" >r2801</a>
978  - <a href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-3d-view" >kinect-3d-view</a>: New key command: press '9' to grab selected snapshots to disk - <a href="http://code.google.com/p/mrpt/source/detail?r=2890" >r2890</a>
979  - Kinect stuff:
980  - [mrpt-hwdrivers]
981  - mrpt::hwdrivers::CKinect now decodes Bayer color using OpenCV instead of default freenect - <a href="http://code.google.com/p/mrpt/source/detail?r=2721" >r2721</a>, <a href="http://code.google.com/p/mrpt/source/detail?r=2762" >r2762</a>
982  - mrpt::hwdrivers::CKinect no longer forces a horizontal tilt at start up by default, what may be annoying (if required, set "initial_tilt_angle") - <a href="http://code.google.com/p/mrpt/source/detail?r=2722" >r2722</a>
983  - mrpt::hwdrivers::CKinect now loads Kinect calibration files in a format compatible with stereo cameras. See http://www.mrpt.org/Kinect_calibration
984  - [mrpt-obs]
985  - New method mrpt::obs::CObservation3DRangeScan::convertTo2DScan() allows simulating a "fake 2D laser scanner" from a Kinect. See the example: http://www.mrpt.org/Example_Kinect_To_2D_laser_scan
986  - [mrpt-vision]
987  - New function mrpt::vision::checkerBoardStereoCalibration() to calibrate stereo and RGB+D cameras. See also the program <a href="http://www.mrpt.org/list-of-mrpt-apps/application-kinect-stereo-calibrate" >kinect-stereo-calibrate</a>:
988  - New classes:
989  - [mrpt-gui]
990  - New event generated by GUI windows: mrpt::gui::mrptEventWindowClosed
991  - [mrpt-hwdrivers]
992  - mrpt::hwdrivers::CRaePID: A new interface to PID gas sensing devices (by Emil Khatib, University of Malaga) - <a href="http://code.google.com/p/mrpt/source/detail?r=2841" >r2841</a>
993  - [mrpt-opengl]
994  - New classes for representing confidence intervals (ellipsoids) in transformed spaces - <a href="http://code.google.com/p/mrpt/source/detail?r=2783" >r2783</a>
995  - mrpt::opengl::CGeneralizedEllipsoidTemplate<>
996  - mrpt::opengl::CEllipsoidRangeBearing2D
997  - mrpt::opengl::CEllipsoidInverseDepth2D
998  - mrpt::opengl::CEllipsoidInverseDepth3D
999  - mrpt::opengl::CFrustum to easily render these geometric figures
1000  - New struct mrpt::opengl::TFontParams result of a code refactoring
1001  - [mrpt-vision]
1002  - mrpt::vision::TSIFTDescriptorsKDTreeIndex, TSURFDescriptorsKDTreeIndex - <a href="http://code.google.com/p/mrpt/source/detail?r=2799" >2799</a>
1003  - mrpt::vision::CStereoRectifyMap - See tutorial online: http://www.mrpt.org/Rectifying_stereo_
1004 
1005 */



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019