No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

field_occupy_slam_2d package from field_occupy_slam repo

field_occupy_slam_2d

Package Summary

Tags No category tags.
Version 0.0.0
License GNU GENERAL PUBLIC LICENSE
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/sunshanlu/field_occupy_slam.git
VCS Type git
VCS Version devel
Last Updated 2024-07-02
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

对ORB_SLAM2的完全重写

Additional Links

No additional links.

Maintainers

  • rookie-lu

Authors

No additional authors.

Field_Occupy_SLAM

1. 介绍

基于似然场配准和栅格地图的2d-SLAM,并实现基于子地图的金字塔式回环闭合策略。参考高翔的SADBook的第六章内容,本项目从头到尾复现了第6章的2d-SLAM内容。

  1. 使用线程分离策略,将跟踪、可视化和回环闭合分为三个线程独立运行。
  2. 测试了图像的双线性差值对模型优化的贡献,发现模型优化误差并没有因为差值而降低,因此该项目中并没有使用图像的双线性差值来获取浮点数部分的图像灰度。
  3. 实现了地图的加载和保存,并将所有的超参数提取,以yaml文件的形式进行保存,可以更轻松的调整超参数,而不是修改源码或者使用gflag的方式。
  4. 实现了重定位功能和仅跟踪模式,针对当前测试的数据包,重定位功能比较苛刻,因此会出现重定位失败的情况,如果有更加巧妙的重定位策略,欢迎提出issue。

2. 依赖

  1. C++17
  2. ROS-FOXY
  3. OpenCV 3.4.16
  4. g2o_20201223
  5. Eigen3
  6. yaml-cpp
  7. Sophus
  8. TBB

3. 编译

source /opt/ros/foxy/setup.bash
git clone https://github.com/sunshanlu/Field_Occupy_SLAM.git
cd Field_Occupy_SLAM
mkdir build && cd build
cmake ..
make -j8

4. 运行

根据需求,去配置项目参数文件,配置文件的示例在项目目录下的config.yaml中。

---
laser:
    max_range: 15.0     # 激光雷达最大探测距离
    delta_angle: 30.0   # 激光雷达在原有扫描基础上减少的角度

submap:
    width: 1000         # 子地图宽度(px)
    height: 1000        # 子地图高度(px)
    resolution: 20      # 子地图分辨率(px/m)
    robot_width: 0.5    # 机器人宽度(m, x轴方向)
    robot_height: 1.0   # 机器人高度(m, y轴方向)
    method: 0           # 0: 代表bresenham栅格化,1: 代表模版栅格化
    occupy_range: 200   # 模版栅格化范围
    field_range: 20     # likelihood模版范围

tracking:
    keyframe_pos_th: 0.3 # 单位:m
    keyframe_ang_th: 15  # 单位:度
    keyframe_num_th: 50  # 子地图最大承载量
    range_th: 15         # scan的长度阈值
    motion_guss: True    # 是否使用运动模型
    reloc_th: 0.06       # 如果匹配内点结果小于0.1,进行重定位
    only_track: False    # 是否仅跟踪模式

viewer:
    use_viewer: True   # 是否使用可视化
    gp_max_size: 500   # 全局地图尺寸

loopcloser:
    use_loopcloser: True    # 是否使用闭环检测
    layer_num: 4            # 金字塔层级
    layer_ratio: 2.0        # 金字塔缩放比例
    inlier_ratio: 0.5       # 匹配内点比例
    error_th:               # 每一层误差阈值,单位为m
        - 0.8
        - 0.6
        - 0.3
        - 0.2
    distance_th: 15.0       # 回环闭合候选距离阈值
    submap_gap: 1           # 回环闭合候选子地图相隔距离
    loop_rk_delta: 1.0      # 位姿图优化核函数delta值

map:
    save_map: False
    load_map: False
    map_fp: "/home/rookie-lu/Project/Field_Occupy_SLAM/map"     

为了方便测试和展示效果,在项目的example目录下提供了一个数据包的使用方法,主要是使用System类完成雷达帧数据的接收和SLAM工作。读者可以按照example中的示例来使用本项目中的内容。

source /opt/ros/foxy/setup.bash
./bin/run_mapping_2d config_path bag_path

  1. config_path: 配置文件路径
  2. bag_path: 数据包路径

数据包的下载地址见SADBook中的2dmapping数据。至于如何将rosbag1的数据包转换为rosbag2的问题,就留给读者们自行解决。

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged field_occupy_slam_2d at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.