zoukankan      html  css  js  c++  java
  • 安装cartographer_ros

    这里使用的是hitcm(张明明)的github地址,由于google官方的教程需要FQ下载一些文件,因此容易失败,经验证hitcm(张明明)对原文件进行了少许修改后可以成功安装,在他的修改中核心代码不变,只修改了编译文件。
    We recommend using wstool and rosdep. For faster builds, we also recommend using Ninja.
    # Install wstool and rosdep.
    sudo apt-get update
    sudo apt-get install -y python-wstool python-rosdep ninja-build
    # Create a new workspace in 'catkin_ws'.
    mkdir catkin_ws
    cd catkin_ws
    wstool init src
    # 下载到catkin_ws下面的src文件夹下面
    cd src
    git clone https://github.com/hitcm/cartographer_ros.git
    # 然后到catkin_ws下面运行catkin_make安装
    cd
    cd catkin_ws
    catkin_make,可能会报以下错误:Fatal error: pcl/conversions.h: No such file or directory.,执行sudo apt-get install ros-indigo-pcl-conversions,再次catkin_make即可
    
    

      

  • 相关阅读:
    Python模块笔记
    js日期
    js字符串
    js數字
    js對象構造
    js 錯誤
    js break和continue
    js條件結構和循環結構
    js運算符
    js函數
  • 原文地址:https://www.cnblogs.com/sea-stream/p/9799705.html
Copyright © 2011-2022 走看看