在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 移动机器人导航和rrt自主建图项目代码文件

移动机器人导航和rrt自主建图项目代码文件

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.78M
  • 下载次数:8
  • 浏览次数:293
  • 发布时间:2020-09-18
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
移动机器人项目组任务安排表 Day 01 上午 1.gmapping参数配置(李超) 2.总体launch文件的编写(钟浩) 3.机器人tf,状态,滤波器launch文件的编写(李博) 4.移动机器人调试(李超,钟浩,李博) 5.完成gmapping建图修图(李超,钟浩,李博) 下午 1.move_base参数配置(李超,钟浩) 2.amcl参数配置(李博) 3.调试机器人导航参数(李超,钟浩,李博) 4.在rviz中完成机器人单点导航(李超,钟浩) 5.记录多个导航目标点(李超,钟浩) 6.查阅随机循环导航函数的资料(李博) 7.完成随机循环导航功能节点函数(李超,钟浩,李博) 8.完成随机
【实例截图】
【核心代码】
移动机器人项目代码文件
└── 最新版完美代码加解释
├── bobac_map
│   ├── CMakeLists.txt
│   ├── config
│   │   ├── base_local_planner_params.yaml
│   │   ├── cart.lua
│   │   ├── costmap_common_params.yaml
│   │   ├── dwa_local_planner.yaml
│   │   ├── global_costmap_params.yaml
│   │   ├── global_planner_params.yaml
│   │   ├── local_costmap_params.yaml
│   │   ├── move_base_params.yaml
│   │   ├── test_carto_map1.png
│   │   ├── test_carto_map.pgm
│   │   └── test_carto_map.yaml
│   ├── launch
│   │   ├── amcl.launch
│   │   ├── bobac_gmapping.launch
│   │   ├── bobac_move_base.launch
│   │   ├── cart_gmapping.launch
│   │   ├── cartugrapher.launch
│   │   ├── depthimage_to_laserscan.launch
│   │   ├── gmapping.launch
│   │   ├── hector_demo.launch
│   │   ├── hector.launch
│   │   ├── kinect_gmapping.launch
│   │   ├── laserscan.launch
│   │   └── point_to_scan.launch
│   ├── maps
│   │   ├── demo.pgm
│   │   ├── demo.yaml
│   │   ├── dwa_local_planner.yaml
│   │   ├── gmapping_map2.pgm
│   │   ├── gmapping_map2.yaml
│   │   ├── hector_map.pgm
│   │   ├── hector_maps.rviz
│   │   ├── hector_map.yaml
│   │   ├── hector_office2.pgm
│   │   ├── hector_office.pgm
│   │   ├── hector_office.yaml
│   │   ├── map2.yaml
│   │   ├── map.yaml
│   │   ├── office1.yaml
│   │   ├── office2.pgm
│   │   └── office.pgm
│   └── package.xml
├── bs_cycle_nav
│   ├── cycle_nav
│   │   ├── CMakeLists.txt
│   │   ├── package.xml
│   │   └── src
│   │   └── cycle_nav.cpp
│   ├── nav_panel
│   │   ├── CMakeLists.txt
│   │   ├── nav_panel.xml
│   │   ├── package.xml
│   │   └── src
│   │   ├── nav_panel.cpp
│   │   └── nav_panel.h
│   ├── nav_tool
│   │   ├── CMakeLists.txt
│   │   ├── nav_tool.xml
│   │   ├── package.xml
│   │   └── src
│   │   ├── nav_tool.cpp
│   │   └── nav_tool.h
│   └── README.md
├── cbh
│   ├── CMakeLists.txt
│   ├── configs
│   │   ├── base_local_planner_params.yaml
│   │   ├── costmap_common_params.yaml
│   │   ├── global_costmap_params.yaml
│   │   ├── local_costmap_params.yaml
│   │   ├── nav
│   │   │   ├── base_local_planner_params.yaml
│   │   │   ├── costmap_common_params.yaml
│   │   │   ├── global_costmap_params.yaml
│   │   │   └── local_costmap_params.yaml
│   │   └── nav.rviz
│   ├── launch
│   │   ├── CBH_amcl.launch
│   │   ├── CBH_gmapping_all.launch
│   │   ├── CBH_gmapping.launch
│   │   ├── CBH_move_base.launch
│   │   ├── CBH_movebase.launch
│   │   ├── CBH_navigation.launch
│   │   ├── CBH_selfexplore.launch
│   │   └── CBH_start.launch
│   ├── maps
│   │   ├── CBH_gmapping_map1.map.pgm
│   │   └── CBH_gmapping_map1.map.yaml
│   ├── package.xml
│   ├── readme.txt
│   ├── scripts
│   │   ├── exploring_slam.py
│   │   └── shunxu_slam.py
│   └── src
│   ├── CBH_cycle.cpp
│   ├── CBH_explore.cpp
│   ├── CBH_explore_king.cpp
│   ├── CBH_initial_odom.cpp
│   ├── CBH_initialpose.cpp
│   ├── CBH_lichao_explore2.cpp
│   ├── CBH_lichao_explore2_odom.cpp
│   ├── CBH_lichao_explore.cpp
│   ├── CBH_marker.cpp
│   ├── CBH_move_base.cpp
│   ├── move_base_contruller.cpp
│   ├── Pose_init_lichao.cpp
│   ├── sub_action_goal__cycle2.cpp
│   └── sub_action_goal_cycle.cpp
├── cbh_nav_ui
│   ├── CMakeLists.txt
│   ├── package.xml
│   ├── point.xml
│   ├── readme.txt
│   └── src
│   ├── point.cpp
│   └── point.h
├── cbh_point_ui
│   ├── CMakeLists.txt
│   ├── cycle.xml
│   ├── package.xml
│   ├── readme.txt
│   └── src
│   ├── cycle.cpp
│   └── cycle.h
├── cbh_ui
│   ├── CMakeLists.txt
│   ├── package.xml
│   ├── readme.txt
│   ├── src
│   │   ├── ui.cpp
│   │   └── ui.h
│   └── ui.xml
├── depthimage_to_laserscan
│   ├── cfg
│   │   └── Depth.cfg
│   ├── CHANGELOG.rst
│   ├── CMakeLists.txt
│   ├── include
│   │   └── depthimage_to_laserscan
│   │   ├── DepthImageToLaserScan.h
│   │   ├── DepthImageToLaserScanROS.h
│   │   └── depth_traits.h
│   ├── mainpage.dox
│   ├── nodelets.xml
│   ├── package.xml
│   ├── README.md
│   ├── src
│   │   ├── depthimage_to_laserscan.cpp
│   │   ├── DepthImageToLaserScan.cpp
│   │   ├── DepthImageToLaserScanNodelet.cpp
│   │   └── DepthImageToLaserScanROS.cpp
│   └── test
│   ├── depthimage_to_laserscan_rostest.cpp
│   ├── DepthImageToLaserScanTest.cpp
│   └── rostest
│   └── depthimage_to_laserscan.test
├── pluginlib_tutorials
│   ├── CMakeLists.txt
│   ├── include
│   │   └── pluginlib_tutorials
│   │   ├── polygon_base.h
│   │   └── polygon_plugins.h
│   ├── package.xml
│   ├── polygon_plugins.xml
│   └── src
│   ├── polygon_loader.cpp
│   └── polygon_plugins.cpp
├── rrt_exploration
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── functions.h
│   │   └── mtrand.h
│   ├── launch
│   │   ├── simple.launch
│   │   ├── single.launch
│   │   └── three_robots.launch
│   ├── LICENSE.md
│   ├── msg
│   │   └── PointArray.msg
│   ├── package.xml
│   ├── README.md
│   ├── readme.txt
│   ├── scripts
│   │   ├── assigner.py
│   │   ├── filter.py
│   │   ├── frontier_opencv_detector.py
│   │   ├── functions.py
│   │   ├── functions.pyc
│   │   └── getfrontier.py
│   └── src
│   ├── functions.cpp
│   ├── global_rrt_detector.cpp
│   ├── local_rrt_detector.cpp
│   ├── mtrand.cpp
│   └── my_rrt.cpp
├── rviz_plugin
│   ├── CMakeLists.txt
│   ├── lichao_plugin.xml
│   ├── package.xml
│   └── src
│   ├── lichao_tool.cpp
│   └── lichao_tool.h
├── rviz_teleop_commander
│   ├── CMakeLists.txt
│   ├── package.xml
│   ├── plugin_description.xml
│   └── src
│   ├── teleop_pad.cpp
│   └── teleop_pad.h
├── 移动机器人的项目理解.txt
├── 移动机器人项目组任务安排表.odt
├── 移动机器人项目组任务进度.docx
├── 移动机器人项目组项目实现方案.odt
└── 项目实践计划
├── 0项目实践安排.docx
├── 1移动机器人项目需求.docx
├── 2机械臂项目需求.docx
├── 3视觉项目需求.docx
├── 4语音项目需求.docx
├── doxygen_manual-1.8.14.chm
├── google-C++编程风格指南.pdf
├── 注释风格.txt
└── 编码规范.txt

47 directories, 180 files

标签:

实例下载地址

移动机器人导航和rrt自主建图项目代码文件

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警