diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bd67d3..5f91a33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,15 +20,14 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)" ) include(ProcessorCount) ProcessorCount(N) message("Processer number: ${N}") - if(N GREATER 5) + if(N GREATER 4) add_definitions(-DMP_EN) - add_definitions(-DMP_PROC_NUM=4) - message("core for MP: 3") + add_definitions(-DMP_PROC_NUM=3) + message("core for MP: 3") elseif(N GREATER 3) - math(EXPR PROC_NUM "${N} - 2") add_definitions(-DMP_EN) - add_definitions(-DMP_PROC_NUM="${PROC_NUM}") - message("core for MP: ${PROC_NUM}") + add_definitions(-DMP_PROC_NUM=2) + message("core for MP: 2") else() add_definitions(-DMP_PROC_NUM=1) endif() diff --git a/README.md b/README.md index f54bb0f..b8909c4 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ 3. [UAV Avoiding Dynamic Obstacles](https://github.com/hku-mars/dyn_small_obs_avoidance): One of the implementation of FAST-LIO in robot's planning. 4. [R2LIVE](https://github.com/hku-mars/r2live): A high-precision LiDAR-inertial-Vision fusion work using FAST-LIO as LiDAR-inertial front-end. 5. [UGV Demo](https://www.youtube.com/watch?v=wikgrQbE6Cs): Model Predictive Control for Trajectory Tracking on Differentiable Manifolds. +6. [SC-A-LOAM](https://github.com/gisbi-kim/SC-A-LOAM#for-livox-lidar): A scan-context loop closure module that can directly work with FAST-LIO1 (The support for FAST-LIO2 is under developing). ## FAST-LIO **FAST-LIO** (Fast LiDAR-Inertial Odometry) is a computationally efficient and robust LiDAR-inertial odometry package. It fuses LiDAR feature points with IMU data using a tightly-coupled iterated extended Kalman filter to allow robust navigation in fast-motion, noisy or cluttered environments where degeneration occurs. Our package address many key issues: @@ -16,34 +17,34 @@