加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
compile_detection.sh 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
potato77 提交于 2022-06-12 15:31 . update
#!/bin/bash
# 脚本名称: compile_detection.sh
# 脚本描述: 编译Prometheus目标检测模块
# 编译基础模块
catkin_make --source Modules/common --build build/common
# 编译Gazebo仿真模块
catkin_make --source Simulator/gazebo_simulator --build build/prometheus_gazebo
# 编译控制模块
catkin_make --source Modules/uav_control --build build/uav_control
# 编译demo模块
catkin_make --source Modules/tutorial_demo --build build/tutorial_demo
# 编译目标检测模块
catkin_make --source Modules/object_detection --build build/object_detection
# compile object_detection_yolov5tensorrt
if [ ! -f "Modules/object_detection_yolov5openvino/CMakeLists.txt" ]; then
# submodule object_detection_yolov5openvino not exist, skip it
echo -e "\e[32m[INFO] SUBMODULE\e[0m \e[33mobject_detection_yolov5openvino\e[0m \e[32mNOT EXIST, Skip it!\e[0m"
else
echo -e "\e[32m[INFO] COMPILE \e[33mobject_detection_yolov5openvino\e[0m \e[32m...\e[0m"
# compile object_detection_landing
catkin_make --source Modules/object_detection_yolov5openvino --build build/object_detection_yolov5openvino
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化