Jetson nano运行lidar_align进行激光雷达和IMU联合标定
软硬件准备:
- 硬件平台:英伟达Jetson Nano开发板4G版本
- 系统环境:Ubuntu18.04
- 采用数据集:lidar_align作者示例数据集
- 参考资料:https://blog.csdn.net/zbr794866300/article/details/121418295
一、环境搭建
1、安装Nlopt依赖
sudo apt-get install libnlopt-dev
2、编译功能包
(1)新建lidar_align_ws工作空间
mkdir -p lidar_align_ws/src
(2)下载源码
cd lidar_align_ws/src
git clone https://github.com/ethz-asl/lidar_align.git
(3)将下载下来的lidar_align文件夹下的 NLOPTConfig.cmake文件复制到新建工作空间lidar_align_ws/src路径下面。
(4)编译源码
cd ..
catkin_make
若出现报错“error: conflicting declaration ‘typedef struct LZ4_streamDecode_t LZ4_streamDecode_t’”,可使用以下语句解决,再运行catkin_make。
<