Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9147531
  • 博文数量: 1726
  • 博客积分: 12961
  • 博客等级: 上将
  • 技术积分: 19850
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-09 11:25
个人简介

偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.

文章分类

全部博文(1726)

文章存档

2024年(2)

2023年(26)

2022年(112)

2021年(217)

2020年(157)

2019年(192)

2018年(81)

2017年(78)

2016年(70)

2015年(52)

2014年(40)

2013年(51)

2012年(85)

2011年(45)

2010年(231)

2009年(287)

分类: 其他平台

2020-04-21 17:23:20

去年跟踪orb-slam 还不怎么稳定. 尝试beta版本 使用D435i发现有崩溃, 算力消耗太大, 保存地图失败情况, 基本上无法完整跑通.


 
现在跟踪, 作者已经没有beta字眼了, 理论上可以用了.

点击(此处)折叠或打开
  1. Parameters
  2. There are three types of parameters right now: static- and dynamic ros parameters and camera settings from the config file. The static parameters are send to the ROS parameter server at startup and are not supposed to change. They are set in the launch files which are located at ros/launch. The parameters are:


  1. - load_map: Bool. If set to true, the node will try to load the map provided with map_file at startup.

  2. - map_file: String. The name of the file the map is saved at.

  3. - settings_file: String. The location of config file mentioned above.

  4. - voc_file:String. The location of config vocanulary file mentioned above.

  5. - publish_pose: Bool. If a PoseStamped message should be published. Even if this is false the tf will still be published.

  6. - publish_pointcloud: Bool. If the pointcloud containing all key points (the map) should be published.

  7. - pointcloud_frame_id: String. The Frame id of the Pointcloud/map.

  8. - camera_frame_id: String. The Frame id of the camera position.

  9. Dynamic parameters can be changed at runtime. Either by updating them directly via the command line or by using rqt_reconfigure which is the recommended way. The parameters are:

  10. - localize_only: Bool. Toggle from/to only localization. The SLAM will then no longer add no new points to the map.

  11. - reset_map: Bool. Set to true to erase the map and start new. After reset the parameter will automatically update back to false.

  12. - min_num_kf_in_map: Int. Number of key frames a map has to have to not get reset after tracking is lost.

  13. Finally, the intrinsic camera calibration parameters along with some hyperparameters can be found in the specific yaml files in orb_slam2/config.

  14. Published topics
  15. The following topics are being published and subscribed to by the nodes:

  16. - All nodes publish (given the settings) a PointCloud2 containing all key points of the map.

  17. - Live image from the camera containing the currently found key points and a status text.

  18. - A tf from the pointcloud frame id to the camera frame id (the position).

  19. Subscribed topics
  20. - The mono node subscribes to /camera/image_raw for the input image.

  21. - The RGBD node subscribes to /camera/rgb/image_raw for the RGB image and

  22. - /camera/depth_registered/image_raw for the depth information.

  23. - The stereo node subscribes to image_left/image_color_rect and

  24. - image_right/image_color_rect for corresponding images.

  25. Services
  26. All nodes offer the possibility to save the map via the service node_type/save_map. So the save_map services are:

  27. - /orb_slam2_rgbd/save_map

  28. - /orb_slam2_mono/save_map

  29. - /orb_slam2_stereo/save_map
建图/定位..     
后期需要确定的内容:
1. 3D模型修图如何处理?
2. map.bin 是个神马格式?
3. voc_file = Vocabulary/ORBvoc.txt 文件内容意义, 作用域在哪里?
4.  settings_file被抛弃了, 原来内容是什么? 为什么抛弃了? 摄像头固有参数现在哪里去配置.
5.  激光雷达/超声波/红外等等作为避障手段, 如何集成到视觉为基线的costmap中来.
6.  碰撞/电子围栏  如何动态/静态 集成到 pointcloud 中.
7. 路径规划在map.bin中如何实现?
8. 有否 demo 工程参考.

可以先用 D435 先试试.

目前使用奥比中光Orbbec Astra-Mini RGB-D 3D体感摄像头

目前可以尝试在demo平台上跑跑看. 还可以尝试一下使用rgbd + artag的组合, 查看算力使用情况.


注意 配置地板和天花板的高度限值. 需要和 urdf 参数xyz,rpy配套.

点击(此处)折叠或打开

  1. 配置环境
  2. 依赖 libeigen3-dev
  3. 集成 orb_slam_2_ros到 kinetic
  4. ros-kinetic-astra-camera ros-kinetic-astra-launch
  5. $ ls /opt/ros/kinetic/share/astra_launch/launch/
    astra.launch astrapro.launch astra_tf_prefix.launch multi_astra.launch
目前配置一个 astro, 那么加载 astra.launch.
使用rqt_image_view 查看3D体感摄像头图像
使用 rviz 查看 topic 的内容.

0. 配置. urdf, cam_info

1. 建图
    //速度, 精度, 畸变度

2. 修图

3. nav (围挡, nodelet, layer, costmap, 路径规划)

阅读(882) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~