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.
|
Repository Summary
Checkout URI | https://github.com/gezp/localization_for_autonomous_driving.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2024-08-18 |
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) |
Packages
Name | Version |
---|---|
graph_based_localization | 0.0.1 |
imu_odometry | 0.1.0 |
kf_based_localization | 0.0.1 |
lidar_localization | 0.0.1 |
lidar_mapping | 0.1.0 |
lidar_odometry | 0.1.0 |
localization_common | 0.1.0 |
localization_interfaces | 0.1.0 |
loosely_lio_mapping | 0.0.1 |
gnss_ins_sim | 0.0.0 |
ndt_omp_ros2 | 0.0.0 |
scan_context | 0.1.0 |
README
localization_for_autonomous_driving
该项目基于ROS2平台实现了自动驾驶中的简单定位功能,主要以学习为目的,面向初学者学习入门,因此代码侧重于可读性,及扩展性,尽可能将代码进行解耦,并遵循ROS2的项目规范,以及代码风格。
本项目的主要框架以及核心代码参考了任乾老师的从零开始做自动驾驶定位项目 (知乎文章)以及深蓝学院的多传感器融合定位课程。
Quick start
环境要求
- ROS版本:
Humble
下载kitti数据集rosbag
mkdir ~/localization_data
# 将数据拷贝到~/localization_data目录下,然后进行解压
unzip kitti_lidar_only_2011_10_03_drive_0027_synced.zip
下载源码及安装依赖
# 使用git下载代码到ROS2工作空间的src目录
# mkdir -p ~/ros2_ws/src && cd ~/ros2_ws/src
git clone https://github.com/gezp/localization_for_autonomous_driving.git
# 进入ROS2工作空间, 安装依赖
# cd ~/ros2_ws
rosdep install -y -r -q --from-paths src --ignore-src --rosdistro humble
编译
colcon build --symlink-install
运行kitti数据集点云可视化demo
# 需要先source ros环境
ros2 launch localization_common hello_kitti.launch.py
Plan
lidar定位
-
实现lidar里程计功能:
lidar_odometry
-
实现基于lidar的建图功能:
lidar_mapping
-
实现基于lidar的定位功能:
lidar_localization
lidar + imu 多传感器融合定位
-
实现imu里程计(常规积分,预积分):
imu_odometry
-
实现基于卡尔曼滤波的定位功能(eskf):
kf_based_localization
-
实现基于松耦合LIO的建图功能:
loosely_lio_mapping
-
实现基于图优化的定位功能(sliding window):
graph_based_localization
代码优化及扩展
- 实现Loam-based Lidar Odometry
- 利用gnss-ins-sim仿真数据进行imu实验
- 支持其它slam数据集
Acknowledgement
本项目参考了许多其它类似项目,并参考并引用了部分代码,这里向以下项目的作者表示感谢!
- https://github.com/Little-Potato-1990/localization_in_auto_driving
- https://github.com/AlexGeControl/Sensor-Fusion-for-Localization-Courseware
- https://github.com/gaoxiang12/slam_in_autonomous_driving
- https://github.com/HKUST-Aerial-Robotics/VINS-Mono
- https://github.com/HKUST-Aerial-Robotics/A-LOAM
CONTRIBUTING
No CONTRIBUTING.md found.
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.