Linux 35.5 + JetPack v5.1.3@Fast-Planner编译安装

Linux 35.5 + JetPack v5.1.3@Fast-Planner安装

  • 1. 源由
  • 2. 编译&安装
    • Step 1:依赖库安装
    • Step 2:建立工程
    • Step 3:编译工程
    • Step 4:安装工程
  • 3. 问题汇总
    • 3.1 Eigen3 组件问题
    • 3.2 pcl_conversions 组件问题
    • 3.3 cv_bridge组件问题
    • 3.4 laser_geometry 组件问题
    • 3.5 Eigen组件问题
    • 3.6 PCL requires C++14组件问题
    • 3.7 undefined reference to `cv::Mat::Mat()'
  • 4. 总结
  • 5. 补充 - FUEL新版

1. 源由

香港HKUST Aerial Robotics Group开发了一系列基础技术,使空中无人机能够在复杂环境中自主运行。研究涵盖了空中自主导航建模比较完整技术栈,重点在于状态估计、地图绘制、轨迹规划、多机协调以及使用低成本传感和计算组件进行测试平台开发,其代码也被开源在Github - HKUST-Aerial-Robotics。

若能很好的借鉴并应用上述技术,在实际领域进行应用拓展,将会对无人机的应用得到显著提升,进而突破闭源商业系统的垄断地位。

Fast-Planner 的开发目标是使四旋翼飞行器能够在复杂的未知环境中快速飞行。它包含了一系列精心设计的规划算法。它还提供了一个基础代码框架和算法,支持包括 ego-planner、FUEL 和 RACER 等在内的多个流行的开源无人机项目。

2021年5月13日作为里程碑,正式确立了该代码的可行性。

作为基础和入手点,我们从Fast-Planner安装逐步进入这块领域的探索!

2. 编译&安装

注:为了更好的理解整个软件包对系统的依赖关系,我们之前选用的是ros-base安装。

编译方式看上去非常简单,但是其实里面有很多隐含的依赖关系,在脚本方面做的非常不到位。毕竟在研究方面更多是算法,所以在实际应用面的考虑有所不足,不过后续应该可以通过patch方式帮助完善,这也是为什么我们这里采用base方式安装。

$ git log -n 1
commit 40d41a101e91992b08b1ccf3814c83c641c48bca (HEAD -> master, origin/master, origin/HEAD)
Author: Boyu Zhou <405540572@qq.com>
Date:   Tue May 28 19:48:05 2024 +0800Update README.md

Step 1:依赖库安装

$ sudo apt-get install libarmadillo-dev ros_${ROS_VERSION_NAME}_nlopt

Step 2:建立工程

$ mkdir -p ${YOUR_WORKSPACE_PATH}/src
$ cd ${YOUR_WORKSPACE_PATH}/src
$ git clone https://github.com/HKUST-Aerial-Robotics/Fast-Planner.git

注:若存在网络问题,请使用git协议clone代码。git协议始终比https稳定,但需要注意ssh key的安装问题。

Step 3:编译工程

$ cd ${YOUR_WORKSPACE_PATH}
$ catkin_make

Step 4:安装工程

略,因为暂时不涉及软件的部署应用,相关模拟命令参考:

  • 第一次运行Rviz
$ cd ${YOUR_WORKSPACE_PATH}
$ source devel/setup.bash && roslaunch plan_manage rviz.launch
  • 运行quadrotor simulator和Fast-Planner
$ cd ${YOUR_WORKSPACE_PATH}
$ source devel/setup.bash && roslaunch plan_manage kino_replan.launch  //Kinodynamic Path Searching & B-spline Optimization
$ cd ${YOUR_WORKSPACE_PATH}
$ source devel/setup.bash && roslaunch plan_manage topo_replan.launch  //Topological Path Searching & Path-guided Optimization

3. 问题汇总

3.1 Eigen3 组件问题

-- +++ processing catkin package: 'quadrotor_msgs'
-- ==> add_subdirectory(Fast-Planner/uav_simulator/Utils/quadrotor_msgs)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- quadrotor_msgs: 13 messages, 0 services
CMake Error at /usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:146 (message):Could NOT find Eigen3 (missing: EIGEN3_INCLUDE_DIR EIGEN3_VERSION_OK)(Required is at least version "2.91.0")
Call Stack (most recent call first):/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:393 (_FPHSA_FAILURE_MESSAGE)Fast-Planner/uav_simulator/Utils/quadrotor_msgs/cmake/FindEigen3.cmake:76 (find_package_handle_standard_args)Fast-Planner/uav_simulator/Utils/quadrotor_msgs/CMakeLists.txt:101 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeOutput.log".
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeError.log".

解决方案:

$ sudo apt-get install libeigen3-dev

3.2 pcl_conversions 组件问题

-- +++ processing catkin package: 'map_generator'
-- ==> add_subdirectory(Fast-Planner/uav_simulator/map_generator)
-- Could NOT find pcl_conversions (missing: pcl_conversions_DIR)
-- Could not find the required component 'pcl_conversions'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):Could not find a package configuration file provided by "pcl_conversions"with any of the following names:pcl_conversionsConfig.cmakepcl_conversions-config.cmakeAdd the installation prefix of "pcl_conversions" to CMAKE_PREFIX_PATH orset "pcl_conversions_DIR" to a directory containing one of the above files.If "pcl_conversions" provides a separate development package or SDK, besure it has been installed.
Call Stack (most recent call first):Fast-Planner/uav_simulator/map_generator/CMakeLists.txt:8 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeOutput.log".
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

解决方案:

$ sudo apt-get install ros-noetic-pcl-ros

3.3 cv_bridge组件问题

-- +++ processing catkin package: 'plan_env'
-- ==> add_subdirectory(Fast-Planner/fast_planner/plan_env)
-- Found OpenCV: /usr (found version "4.5.4")
-- Could NOT find cv_bridge (missing: cv_bridge_DIR)
-- Could not find the required component 'cv_bridge'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):Could not find a package configuration file provided by "cv_bridge" withany of the following names:cv_bridgeConfig.cmakecv_bridge-config.cmakeAdd the installation prefix of "cv_bridge" to CMAKE_PREFIX_PATH or set"cv_bridge_DIR" to a directory containing one of the above files.  If"cv_bridge" provides a separate development package or SDK, be sure it hasbeen installed.
Call Stack (most recent call first):Fast-Planner/fast_planner/plan_env/CMakeLists.txt:7 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeOutput.log".
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

解决方案:

$ sudo apt-get install ros-noetic-cv-bridge

3.4 laser_geometry 组件问题

-- +++ processing catkin package: 'multi_map_server'
-- ==> add_subdirectory(Fast-Planner/uav_simulator/Utils/multi_map_server)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- Could NOT find laser_geometry (missing: laser_geometry_DIR)
-- Could not find the required component 'laser_geometry'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):Could not find a package configuration file provided by "laser_geometry"with any of the following names:laser_geometryConfig.cmakelaser_geometry-config.cmakeAdd the installation prefix of "laser_geometry" to CMAKE_PREFIX_PATH or set"laser_geometry_DIR" to a directory containing one of the above files.  If"laser_geometry" provides a separate development package or SDK, be sure ithas been installed.
Call Stack (most recent call first):Fast-Planner/uav_simulator/Utils/multi_map_server/CMakeLists.txt:45 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeOutput.log".
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

解决方案:

$ sudo apt-get install ros-noetic-laser-geometry

3.5 Eigen组件问题

-- +++ processing catkin package: 'local_sensing_node'
-- ==> add_subdirectory(Fast-Planner/uav_simulator/local_sensing)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
CMake Warning at /opt/ros/noetic/share/catkin/cmake/catkin_package.cmake:166 (message):catkin_package() DEPENDS on 'Eigen' but neither 'Eigen_INCLUDE_DIRS' nor'Eigen_LIBRARIES' is defined.
Call Stack (most recent call first):/opt/ros/noetic/share/catkin/cmake/catkin_package.cmake:102 (_catkin_package)Fast-Planner/uav_simulator/local_sensing/CMakeLists.txt:69 (catkin_package)-- +++ processing catkin package: 'rviz_plugins'
-- ==> add_subdirectory(Fast-Planner/uav_simulator/Utils/rviz_plugins)
-- Could NOT find rviz (missing: rviz_DIR)
-- Could not find the required component 'rviz'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/noetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):Could not find a package configuration file provided by "rviz" with any ofthe following names:rvizConfig.cmakerviz-config.cmakeAdd the installation prefix of "rviz" to CMAKE_PREFIX_PATH or set"rviz_DIR" to a directory containing one of the above files.  If "rviz"provides a separate development package or SDK, be sure it has beeninstalled.
Call Stack (most recent call first):Fast-Planner/uav_simulator/Utils/rviz_plugins/CMakeLists.txt:6 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeOutput.log".
See also "/home/daniel/HKUST/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

解决方案:

$ sudo apt-get install ros-noetic-rviz

3.6 PCL requires C++14组件问题

#error PCL requires C++14 or above

**解决方案:**在全局CMakeLists.txt中添加CMAKE_CXX_STANDARD 14

# set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 14)
$ sudo vi ${YOUR_WORKSPACE_PATH}/src/CMakeLists.txt
$ cat ${YOUR_WORKSPACE_PATH}/src/CMakeLists.txt |head -n 5

示例:

daniel@nvidia:~/HKUST$ cat src/CMakeLists.txt |head -n 10
# toplevel CMakeLists.txt for a catkin workspace
# catkin/cmake/toplevel.cmakecmake_minimum_required(VERSION 3.0.2)project(Project)set(CATKIN_TOPLEVEL TRUE)
set(CMAKE_CXX_STANDARD 14)

3.7 undefined reference to `cv::Mat::Mat()’

[100%] Linking CXX executable /home/daniel/HKUST/devel/lib/plan_manage/fast_planner_node
/usr/bin/ld: CMakeFiles/fast_planner_node.dir/src/planner_manager.cpp.o: in function `MappingData::MappingData()':
/home/daniel/HKUST/src/Fast-Planner/fast_planner/plan_env/include/plan_env/sdf_map.h:115: undefined reference to `cv::Mat::Mat()'
/usr/bin/ld: /home/daniel/HKUST/src/Fast-Planner/fast_planner/plan_env/include/plan_env/sdf_map.h:115: undefined reference to `cv::Mat::Mat()'
collect2: error: ld returned 1 exit status
make[2]: *** [Fast-Planner/fast_planner/plan_manage/CMakeFiles/fast_planner_node.dir/build.make:311: /home/daniel/HKUST/devel/lib/plan_manage/fast_planner_node] Error 1
make[1]: *** [CMakeFiles/Makefile2:5244: Fast-Planner/fast_planner/plan_manage/CMakeFiles/fast_planner_node.dir/all] Error 2
make: *** [Makefile:141: all] Error 2
Invoking "make -j6 -l6" failed

**解决方案:**这个绝对是脚本问题了,需要链接${OpenCV_LIBS}库,不知道为什么没有PR上去!!!

target_link_libraries( plan_env${catkin_LIBRARIES} ${PCL_LIBRARIES}${OpenCV_LIBS})  
$ sudo vi ${YOUR_WORKSPACE_PATH}/src/Fast-Planner/fast_planner/plan_env/CMakeLists.txt

示例:

$ git diff fast_planner/plan_env/CMakeLists.txt
diff --git a/fast_planner/plan_env/CMakeLists.txt b/fast_planner/plan_env/CMakeLists.txt
index a700b8d..d14ae73 100755
--- a/fast_planner/plan_env/CMakeLists.txt
+++ b/fast_planner/plan_env/CMakeLists.txt
@@ -45,6 +45,7 @@ add_library( plan_envtarget_link_libraries( plan_env${catkin_LIBRARIES}${PCL_LIBRARIES}
+    ${OpenCV_LIBS})add_executable(obj_generator

4. 总结

至此,我们完成了FasPlanner的编译安装,后续我们将另外章节,来介绍如何执行模拟。

CUDA编译优化

$ git diff uav_simulator/local_sensing/CMakeLists.txt
diff --git a/uav_simulator/local_sensing/CMakeLists.txt b/uav_simulator/local_sensing/CMakeLists.txt
index a868546..fe0ebad 100644
--- a/uav_simulator/local_sensing/CMakeLists.txt
+++ b/uav_simulator/local_sensing/CMakeLists.txt
@@ -3,8 +3,8 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3)SET(CMAKE_BUILD_TYPE Release) # Release, RelWithDebInfoSET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")-set(ENABLE_CUDA false)
-# set(ENABLE_CUDA true)
+#set(ENABLE_CUDA false)
+set(ENABLE_CUDA true)if(ENABLE_CUDA)find_package(CUDA REQUIRED)
@@ -17,8 +17,9 @@ if(ENABLE_CUDA)#       -gencode arch=compute_50,code=sm_50;#       -gencode arch=compute_52,code=sm_52;#       -gencode arch=compute_60,code=sm_60;
-      -gencode arch=compute_61,code=sm_61;
-  )
+#       -gencode arch=compute_61,code=sm_61;
+        -gencode arch=compute_87,code=sm_87;
+)SET(CUDA_PROPAGATE_HOST_FLAGS OFF)

5. 补充 - FUEL新版

从HKUST维护的Fast-Planner情况看,可能更偏向学术,有很多兼容性问题,也没有足够的人力维护;不过貌似HKUST - FUEL可能是更加新的版本。不过,总体来说github上的作者还是ZbyLGsc在维护。

  • segfault in fast_planner_node on jetson orin Linux 35.5.0 #175
  • 对视野范围外的障碍物留有余量的算法求开源,即fastplanner第三篇论文的内容 #162

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/25471.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ssm629基于SSM的二手交易平台设计与开发+jsp【已测试】

前言&#xff1a;&#x1f469;‍&#x1f4bb; 计算机行业的同仁们&#xff0c;大家好&#xff01;作为专注于Java领域多年的开发者&#xff0c;我非常理解实践案例的重要性。以下是一些我认为有助于提升你们技能的资源&#xff1a; &#x1f469;‍&#x1f4bb; SpringBoot…

智慧社区整体解决方案

1.智慧社区整体建设方案内容 2.整体功能介绍

linux动态调试 dev_dbg

动态调试使用方法 打开内核动态调试开关&#xff0c;make menuconfig选中CONFIG_DYNAMIC_DEBUG以及CONFIG_DEBUG_FS Linux启动后&#xff0c;使用命令行挂载上dbgfs 1. mkdir /mnt/dbg 2. mount -t debugfs none /mnt/dbg 1.控制某个文件所有dev_dbg()&#xff0c; echo -n &q…

sqli-labs 靶场 less-11~14 第十一关、第十二关、第十三关、第十四关详解:联合注入、错误注入

SQLi-Labs是一个用于学习和练习SQL注入漏洞的开源应用程序。通过它&#xff0c;我们可以学习如何识别和利用不同类型的SQL注入漏洞&#xff0c;并了解如何修复和防范这些漏洞。Less 11 SQLI DUMB SERIES-11判断注入点 尝试在用户名这个字段实施注入,且试出SQL语句闭合方式为单…

电子阅览室有何作用

随着互联网的快速发展&#xff0c;电子阅览室逐渐成为人们获取知识的新方式。它为读者提供了便捷、高效的阅读体验&#xff0c;具有诸多作用。首先&#xff0c;电子阅览室拥有丰富的电子书籍资源&#xff0c;涵盖了各个领域的知识。无论是文学作品还是学术论文&#xff0c;读者…

解决Win10系统ping不通、无法远程的问题

1、概述 某天要使用微软的远程桌面程序mstsc.exe远程到旁边的一台测试电脑上,结果远程不了,ping都ping不通,于是详细研究了这个问题。在此大概地记录一下该问题排查的过程,以供参考。 2、ping不通 使用mstsc.exe远程到测试电脑,远程不了,没有反应。于是手动ping一…

英语学习笔记33——A fine day

A fine day 风和日丽 词汇 Vocabulary day n. 日子&#xff0c;白天 复数&#xff1a;days 常见节日&#xff1a;Mothers’ Day 母亲节      Fathers’ Day 父亲节      Teachers’ Day 教师节      Children’s Day 儿童节      Women’s Day 妇女节 c…

html--宇航员404

<!doctype html> <html> <head> <meta charset"utf-8"> <title>太空404</title><style> html {margin: 0;padding: 0;background-color: white; }body, html {width: 100%;height: 100%;overflow: hidden; }#svgContainer…

【数据库】SQL--DDL(初阶)

文章目录 DDL1. 数据库操作1.1. 表操作1.1.1 创建1.1.2. 查询 2. 数据类型及案例2.1 数值类型2.2 字符串类型2.3 日期时间类型2.4 案例练习 3. 表操作--修改3.1 添加字段3.2 修改字段3.3 修改表名 4. 表操作-删除4.1 删除字段4.2 删除表 5. DDL小结 更多数据库MySQL系统内容就在…

Pytorch 实现目标检测二(Pytorch 24)

一 实例操作目标检测 下面通过一个具体的例子来说明锚框标签。我们已经为加载图像中的狗和猫定义了真实边界框&#xff0c;其中第一个 元素是类别&#xff08;0代表狗&#xff0c;1代表猫&#xff09;&#xff0c;其余四个元素是左上角和右下角的(x, y)轴坐标&#xff08;范围…

Java数据结构与算法(盛水的容器)

前言 针对此类算法题&#xff0c;最基本是暴力算法求解&#xff0c;暴力算法基本是固定的套路。在暴力算法基础上寻求优化思路&#xff0c;是否可以单词遍历能否得到所要的结果。此时需要观察数据的特征&#xff0c;推演数据变化对结果的影响&#xff0c;从而找到合理的解题思…

Web前端Text:深入解析与实践应用

Web前端Text&#xff1a;深入解析与实践应用 在Web前端开发中&#xff0c;Text作为页面内容的重要组成部分&#xff0c;其处理和展示方式直接关系到用户体验和页面效果。本文将围绕Web前端Text的四个方面、五个方面、六个方面和七个方面进行详细解析&#xff0c;带您领略其奥秘…

【网络安全】【深度学习】【入侵检测】SDN模拟网络入侵攻击并检测,实时检测,深度学习

文章目录 1. 前言2. Mininet 和 Ryu 的区别2.1 Mininet2.2 Ryu2.3 总结 3. 模拟攻击3.1 环境准备3.2 创建 Mininet 网络拓扑3.2 启动 Ryu 控制器3.3 模拟网络攻击3.4 捕获流量 4. 实时异常检测4.1 在 Ryu 控制器中4.2 在 h2 机器上的实验结果4.3 深度学习模型部署上h2机器 帮助…

leetcode 数组排序

leetcode: 排序数组 排序算法包括基础的选择排序、插入排序、交换排序&#xff1b;也包括快速排序&#xff0c;堆排序&#xff0c;归并排序等。其中快速排序是交换排序的升级版&#xff1b;堆排序是选择排序的升级版。那插入排序有没有升级版呢&#xff0c;也是有的&#xff0…

修改菜品——后端Java

s1.交互逻辑&#xff1a; 页面发送ajax请求&#xff0c;请求服务端获取分类数据&#xff0c;用于菜品分类下拉框中数据显示&#xff0c;由于修改也在add.html和服务端进行交互&#xff0c;之前添加菜品的时候该请求已经得到处理&#xff1b; 页面发送ajax请求&#xff0c;请求服…

电感十大供应商

电感品牌-电感器品牌排行榜-电感十大品牌-Maigoo品牌榜

Fences 5 激活码 - 电脑桌面整理软件

提起桌面整理&#xff0c;经典老牌工具 Fences 必有一席之地&#xff0c;Stardock 发布了最新的 Fences 5 版本。 可以将文件和图标归类放入各个栅栏分区&#xff0c;并支持文件夹展开至桌面、分区置顶、淡化隐藏图标等功能&#xff0c;能让你的桌面焕然一新&#xff0c;不再混…

自建 Docker 镜像

本文地址&#xff1a;blog.lucien.ink/archives/547 本文主要参考自&#xff1a;自建Docker 镜像/源加速的方法 1. 简介 最近 Docker Hub 被禁一事引起了不小的波动&#xff0c;在这里简单讲下在这之后应该如何访问公开的 Docker Hub。 2. Cloudflare 2.1 搭建 搭建的前提是…

(2024,扩散,DMP,提示混合,动态门控,阶段特异性,微调)通过混合提示进行扩散模型修补

Diffusion Model Patching via Mixture-of-Prompts 公和众和号&#xff1a;EDPJ&#xff08;进 Q 交流群&#xff1a;922230617 或加 VX&#xff1a;CV_EDPJ 进 V 交流群&#xff09; 目录 0 摘要 1 简介 2 相关工作 3 扩散模型修补&#xff08;DMP&#xff09; 3.1 架构…

【运维】如何在Ubuntu 22上使用Python 3.8的虚拟环境

在Ubuntu 22上使用Python 3.8的虚拟环境安装Ryu是相对简单的。以下是一步一步的指南&#xff1a; https://qq742971636.blog.csdn.net/article/details/139566151 安装Python 3.8&#xff1a; 在Ubuntu 22上&#xff0c;Python 3.8可能不是默认安装的版本。你可以使用以下命令…