add support for custom PCL build
parent
703dd89aca
commit
ac8a46cfb1
|
@ -1,5 +1,6 @@
|
|||
cmake_minimum_required(VERSION 2.8.3)
|
||||
project(fast_lio)
|
||||
cmake_policy(SET CMP0074 NEW)
|
||||
|
||||
SET(CMAKE_BUILD_TYPE "Debug")
|
||||
|
||||
|
|
|
@ -53,6 +53,9 @@ Clone the repository and catkin_make:
|
|||
catkin_make
|
||||
source devel/setup.bash
|
||||
```
|
||||
*Remarks:*
|
||||
- If you want to use a custom build of PCL, add the following line to ~/.bashrc
|
||||
```export PCL_ROOT={CUSTOM_PCL_PATH}```
|
||||
## 3. Directly run
|
||||
### 3.1 For indoor environments (support maximum 50hz frame rate)
|
||||
Connect to your PC to Livox Avia LiDAR by following [Livox-ros-driver installation](https://github.com/Livox-SDK/livox_ros_driver), then
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <math.h>
|
||||
#include <Eigen/Core>
|
||||
#include <opencv/cv.h>
|
||||
#include <opencv2/core.hpp>
|
||||
// #include <common_lib.h>
|
||||
|
||||
#define SKEW_SYM_MATRX(v) 0.0,-v[2],v[1],v[2],0.0,-v[0],-v[1],v[0],0.0
|
||||
|
|
Loading…
Reference in New Issue