You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Eigen/README.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,10 +41,12 @@ target_link_libraries(...)
41
41
## check version
42
42
[How to check the version number of Eigen C++ template library?](https://stackoverflow.com/questions/21497064/how-to-check-the-version-number-of-eigen-c-template-library)
43
43
44
-
Open `$(eigen_installation_dir)/eigen3/Eigen/src/Core/util` and find `EIGEN_WORLD_VERSION`, `EIGEN_MAJOR_VERSION`, `EIGEN_MINOR_VERSION` like:
44
+
Open `$(eigen_installation_dir)/eigen3/Eigen/src/Core/util/Macros.h` and find `EIGEN_WORLD_VERSION`, `EIGEN_MAJOR_VERSION`, `EIGEN_MINOR_VERSION` like:
45
45
46
46
```cpp
47
47
#defineEIGEN_WORLD_VERSION 3
48
48
#define EIGEN_MAJOR_VERSION 3
49
49
#define EIGEN_MINOR_VERSION 7
50
50
```
51
+
52
+
Note: PCL 1.11.1 uses Eigen 3.3.7, PCL 1.12.1 uses Eigen 3.4.0
0 commit comments