Ubuntu20.04 Kimera Semantic运行记录

Ubuntu20.04 Kimera Semantic 官方bag运行记录

以下基本为官方教程,有部分修改

依赖

sudo apt-get install python3-wstool python3-catkin-tools  protobuf-compiler autoconf
sudo apt-get install ros-noetic-cmake-modules

sudo apt-get install ros-noetic-image-proc
sudo apt-get install ros-noetic-depth-image-proc

Kimera-Semantics Installation

# Setup catkin workspace
mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/
catkin init
catkin config --extend /opt/ros/noetic # Change `melodic` to your ROS distro
catkin config --cmake-args -DCMAKE_BUILD_TYPE=Release
catkin config --merge-devel

# Add workspace to bashrc.
echo 'source ~/catkin_ws/devel/setup.bash' >> ~/.bashrc

# Clone repo 选择了feature/noetic_fixes分支
cd ~/catkin_ws/src
git clone https://github.com/MIT-SPARK/Kimera-Semantics.git --branch feature/noetic_fixes

# Install dependencies from rosinstall file using wstool
wstool init # Use unless wstool is already initialized

# Optionally add Kimera-Semantics to the rosinstall file
# wstool scrape

# For ssh:
#wstool merge Kimera-Semantics/install/kimera_semantics_ssh.rosinstall
# For https: 选择了这个
wstool merge Kimera-Semantics/install/kimera_semantics_https.rosinstall

# Download and update all dependencies
wstool update

编译

# Compile code
catkin build kimera_semantics_ros

# Refresh workspace
source ~/catkin_ws/devel/setup.bash

测试运行

三个终端分别运行,记得source和下载官方bag

roscore
roslaunch kimera_semantics_ros kimera_semantics.launch play_bag:=true
rviz -d $(rospack find kimera_semantics_ros)/rviz/kimera_semantics_gt.rviz

实际环境测试进行中。。。

相关推荐

  1. Ubuntu20.04 Kimera Semantic运行记录

    2023-12-05 21:16:10       62 阅读
  2. 记录 | ubuntu安装Albert

    2023-12-05 21:16:10       51 阅读
  3. ubuntu装机记录

    2023-12-05 21:16:10       63 阅读
  4. ubuntu安装redis记录

    2023-12-05 21:16:10       62 阅读
  5. ubuntu常用记录

    2023-12-05 21:16:10       37 阅读
  6. ubuntu】Vim配置记录

    2023-12-05 21:16:10       33 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-05 21:16:10       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-05 21:16:10       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-05 21:16:10       82 阅读
  4. Python语言-面向对象

    2023-12-05 21:16:10       91 阅读

热门阅读

  1. 机器学习之决策树及随机森林

    2023-12-05 21:16:10       51 阅读
  2. 修复 Ubuntu 2204 Wi-Fi 热点无法连接问题

    2023-12-05 21:16:10       60 阅读
  3. 决策树详解

    2023-12-05 21:16:10       54 阅读
  4. 编译ubuntu kernel

    2023-12-05 21:16:10       51 阅读
  5. LeetCode [中等]98. 验证二叉搜索树

    2023-12-05 21:16:10       62 阅读
  6. 尝试修改vim光标的思路

    2023-12-05 21:16:10       63 阅读
  7. 40. 组合总和 II

    2023-12-05 21:16:10       57 阅读
  8. oracle 去重

    2023-12-05 21:16:10       59 阅读
  9. 前端开发js中的class(类)继承

    2023-12-05 21:16:10       59 阅读