Skip to content

Commit 9873072

Browse files
committed
Merge pull request #89 from ethz-asl/release/1.2.3
Release/1.2.3
2 parents b864dae + 4e03f62 commit 9873072

File tree

3 files changed

+43
-6
lines changed

3 files changed

+43
-6
lines changed

CHANGELOG.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22
Changelog for package libpointmatcher
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
1.2.3 (2015-05-15)
6+
------------------
7+
* Support including other versions of YAML in compilation units that also include the YAML version packed with libpointmatcher (PR #80)
8+
* Changed immutability concept for SupportLabel to support MSVC 2012 (#78)
9+
* Fixed build system related bugs (#79, #70, ..).
10+
* updated build_map example, added better error message, added better information prints
11+
* cleaned CMakeList and added missing dependencies for external projetcs
12+
* avoid possibility of building dynamic library on MacOS
13+
* updated Mac build instructions
14+
* Tim3xx laser support on Simple Noise filter (#64)
15+
* Modified default covariance return in PointToPlaneWithCovErrorMinimizer (#59)
16+
* update usage text and retab
17+
* Removed compilation warnings
18+
* add unit test for ICPSequence
19+
* added application of reference data points filters for ICPSequence objects (#56)
20+
* Merge branch 'master' of github.com:ethz-asl/libpointmatcher
21+
* fix problem with libnabo linking (#54)
22+
* Adapted the code to handle 2D point clouds and decided to split the initial/icp/complete transformation matrices in 3 different files. It should be easier to post process the transformations.
23+
* Changed matrix for matrices as output suffix
24+
* Changed the ICP example (pmicp) to accept initial translation/rotation input and allow to output the transformation matrices
25+
* CutBelowLevelDataPointsFilter (PR #48)
26+
* split unit tests (PR #47)
27+
* Delete roadmap.txt
28+
* change year to 2014
29+
* correct bug in DataPoints operator==
30+
* add a method to remove features or descriptors
31+
* add empty function for removing features and descriptors
32+
* add functions to DataPoints avoiding error on rows and cols
33+
* fill missing documentation
34+
* resolve warning from unsigned to int in IO.cpp
35+
* add extra empty line in utest
36+
* add extra unit tests and resolve remaining bugs
37+
* Refactored how to load PLY files
38+
* Allow 2D descriptors (##45)
39+
* Allow saving 2D descriptors coming from a 2Dmap, that are converted to 3D when writing to the file but needed after if we want to load the map as 2D.
40+
* Contributors: Francis Colas, Francisco J Perez Grau, François Pomerleau, HannesSommer, Philipp Kruesi, Renaud Dube, Simon Lynen, chipironcin, pomerlef, smichaud, v01d
41+
542
1.2.2 (2014-08-05)
643
------------------
744
* Yaml-cpp0.3 now built with libpointmatcher for compatibility with newer Ubuntu systems using yaml-cpp0.5

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>libpointmatcher</name>
3-
<version>1.2.2</version>
3+
<version>1.2.3</version>
44
<description>
55
libpointmatcher is a modular ICP library, useful for robotics and computer vision.
66
</description>

pointmatcher/PointMatcher.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5656

5757
#include "Parametrizable.h"
5858
#include "Registrar.h"
59-
60-
#if NABO_VERSION_INT < 10001
61-
#error "You need libnabo version 1.0.1 or greater"
59+
60+
#if NABO_VERSION_INT < 10006
61+
#error "You need libnabo version 1.0.6 or greater"
6262
#endif
6363

6464
/*!
@@ -68,9 +68,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6868

6969

7070
//! version of the Pointmatcher library as string
71-
#define POINTMATCHER_VERSION "1.2.1"
71+
#define POINTMATCHER_VERSION "1.2.3"
7272
//! version of the Pointmatcher library as an int
73-
#define POINTMATCHER_VERSION_INT 10201
73+
#define POINTMATCHER_VERSION_INT 10203
7474

7575
//! Functions and classes that are not dependant on scalar type are defined in this namespace
7676
namespace PointMatcherSupport

0 commit comments

Comments
 (0)