Navigation

    蓝鲸ROS机器人论坛

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Popular
    ROS交流群
    ROS Group
    产品服务
    Product Service
    开源代码库
    Github
    官网
    Official website
    技术交流
    Technological exchanges
    激光雷达
    LIDAR
    ROS教程
    ROS Tourials
    深度学习
    Deep Learning
    机器视觉
    Computer Vision

    在使用amcl导航时movebase 崩溃的解决方法

    技术交流
    1
    1
    726
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • weijiz
      weijiz last edited by

      原因可能是由于libpcl库在编译的时候开启了优化,使用了自己的计算机CPU不支持的指令。
      可能出现这种情况的原因有在其他电脑上编译后的程序拿到了别的电脑上去使用。
      解决方法也很简单,重新编译安装pcl库然后在catkin_make一下自己的工作空间。同时开启优化和不开启优化性能相差也很多,所以最好还是自己编译安装一遍pcl库。
      pcl库的安装也很容易

      git clone https://github.com/PointCloudLibrary/pcl
      cd pcl
      mkdir build
      cd build
      cmake ..
      make -j2 #这个根据自己机器的性能设置,数值太大了容易死机
      sudo make install
      
      1 Reply Last reply Reply Quote 0
      • First post
        Last post
      Copyright © 2015-2021 BlueWhale community