使用ros2跑mid360的fastlio2建图

fastlio2出了对应的ROS2对应的建图

1.跑通mid360驱动包

可以看我以前的文章教程:https://blog.csdn.net/2301_79618994/article/details/157222625?spm=1001.2014.3001.5501

2.跑通faslio2算法包

在src下面可以git clone

复制代码
git clone -b ros2 https://github.com/Ericsii/FAST_LIO.git --recursive

或者下载了代码可以使用git切换

复制代码
git clone https://github.com/hku-mars/FAST_LIO.git
cd FAST_LIO
git checkout ros2
git submodule update --init --recursive   # 保证依赖也同步

如果你直接colcon build 可能会导致编译报错

复制代码
以下是报错:
core for MP: 3
CMake Warning (dev) at CMakeLists.txt:81 (find_package):
  Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
  Run "cmake --help-policy CMP0074" for policy details.  Use the cmake_policy
  command to set the policy and suppress this warning.

  CMake variable PCL_ROOT is set to:

    /usr

  For compatibility, CMake is ignoring the variable.
This warning is for project developers.  Use -Wno-dev to suppress it.

Eigen:/usr/include/eigen3
CMake Error at CMakeLists.txt:95 (add_executable):
  Cannot find source file:

    include/ikd-Tree/ikd_Tree.cpp

  Tried extensions .c .C .c++ .cc .cpp .cxx .cu .mpp .m .M .mm .ixx .cppm .h
  .hh .h++ .hm .hpp .hxx .in .txx .f .F .for .f77 .f90 .f95 .f03 .hip .ispc


CMake Error at CMakeLists.txt:95 (add_executable):
  No SOURCES given to target: fastlio_mapping

也就是找不到/ikd-Tree/ikd_Tree.cpp,可能你在看代码的时候,没有这个文件,可以更新模块下载或者单独下载来去放到对应文件夹

复制代码
git clone https://github.com/hku-mars/ikd-Tree.git

3.编译运行

复制代码
cd /home/af/test2
colcon build

ros2 launch fast_lio mapping.launch.py

编译之后就是,打开终端运行

复制代码
cd /home/af/test2
source install/setup.bash
ros2 launch livox_ros_driver2 msg_MID360_launch.py

再打开一个终端

复制代码
cd /home/af/test2
source  install/setup.bash
ros2 launch fast_lio mapping.launch.py

然后就是完成fastlio2建图了,一开始的rviz黑屏,注意那不是黑屏,你把rviz放大就可以看见了,然后add一个grid,就和之前的一样了

相关推荐
Joshua-a4 小时前
正点原子DS100示波器测DC电源纹波方法
单片机·嵌入式硬件
2301_772204284 小时前
ARM——时钟系统
arm开发·单片机·嵌入式硬件
恶魔泡泡糖5 小时前
51单片机直流电机
单片机·嵌入式硬件·51单片机
长沙红胖子Qt6 小时前
SVN培训笔记(二):使用sourceTree通过git桥接管理svn项目
git·svn·sourcetree·sourcetree管理svn
VekiSon6 小时前
ARM架构——时钟系统与定时器详解
linux·c语言·arm开发·嵌入式硬件·架构
宵时待雨6 小时前
STM32笔记归纳3:串口
笔记·stm32·嵌入式硬件
国科安芯7 小时前
抗辐照MCU在核电站交换机中的可靠性验证方法研究
单片机·嵌入式硬件·架构·安全性测试
松涛和鸣7 小时前
60、嵌入式定时器深度解析:EPIT与GPT
c语言·arm开发·单片机·嵌入式硬件·gpt·fpga开发
乐亦_Lee7 小时前
在Ubuntu下如何提升下载速度
linux·嵌入式硬件·ubuntu