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



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST