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/l5player/autodriving-planning-control-algorithm-simulation-carla.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2023-09-01 |
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 |
---|---|
carla_l5player_bridge_ego_vis | 0.0.0 |
carla_l5player_lqr_pid_controller | 0.0.0 |
carla_l5player_lqr_pid_controller_waypoint | 0.0.0 |
carla_l5player_mpc_controller | 0.0.0 |
carla_l5player_pid_controller | 0.0.0 |
carla_l5player_pid_new_controller | 0.0.0 |
carla_l5player_stanley_pid_controller | 0.0.0 |
carla_l5player_aeb_with_python_script | 0.0.0 |
carla_l5player_nop_with_python_script | 0.0.0 |
l5player_nop_msgs | 0.0.0 |
carla_ackermann_control | 0.0.0 |
carla_ackermann_msgs | 1.0.0 |
carla_ad_agent | 0.0.1 |
carla_ad_demo | 0.0.1 |
carla_common | 0.0.1 |
carla_manual_control | 0.0.0 |
carla_msgs | 1.3.0 |
carla_ros_bridge | 0.0.1 |
carla_ros_scenario_runner | 0.0.0 |
carla_ros_scenario_runner_types | 0.1.0 |
carla_spawn_objects | 0.0.0 |
carla_twist_to_control | 0.0.0 |
carla_walker_agent | 0.0.1 |
carla_waypoint_publisher | 0.0.0 |
carla_waypoint_types | 0.1.0 |
pcl_recorder | 0.0.0 |
ros_compatibility | 0.0.0 |
rqt_carla_control | 0.0.0 |
rviz_carla_plugin | 0.0.1 |
README
欢迎仪式
欢迎大家来到自动驾驶Player(L5Player)的自动驾驶算法与仿真空间,在这个空间我们将一起完成这些事情:
- 控制算法构建基础模块并仿真调试:PID、LQR、Stanley 、MPC、滑膜控制、模糊控制、横向控制、纵向控制
- 运动规划算法构建基础模块并仿真调试:样条曲线、贝塞尔曲线、ASTAR、RRT、动态规划、二次规划、EM Planer、Lattice Planer
- 基于以上基础模块构建L2~L4功能模块: AEB、ACC、LKA、TJA、ALC、高速NOP、城市NOP、AVP
- 文章、算法、理论、书籍分享;
- 日常交流,行业咨询分享;
建立这个项目的目的,是希望从零开始,搭建完整的自动驾驶系统,并且与大家共同完成
github地址: https://github.com/L5Player/AutoDriving-Planning-Control-Algorithm-Simulation-Carla
gitte地址:https://gitee.com/nannanbe/auto-driving-planning-control-algorithm-simulation-carla
博客地址
想要一起学习的伙伴,请关注我的CSDN、b站、知乎、公众号:自动驾驶Player(L5Player)
CSDN有系列专栏可以订阅
CSDN地址: https://blog.csdn.net/nn243823163/category_11685852.html?spm=1001.2014.3001.5482
知乎地址:https://www.zhihu.com/people/L5Player
首先启动Crla仿真器
- 在Carla下运行:./CarlaUE4.sh 或 ./CarlaUE4.sh -prefernvidia
NOP function scenario design and control
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- python vehicle_gallery_aeb.py
- ros2 run carla_l5player_nop_with_python_script carla_l5player_nop_with_python_script_node
- 同时启动rviz: ros2 launch carla_l5player_nop_with_python_script nop_launch.py
- build: colcon build –packages-select carla_l5player_nop_with_python_script
AEB function scenario design and control
- 通过python api设计AEB场景并实现功能
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- python vehicle_gallery_aeb.py
- ros2 run carla_l5player_aeb_with_python_script carla_l5player_aeb_with_python_script_node
LQR PID Controller with Waypoint
- 通过Waypoint Publisher发布轨迹并进行跟随
- source source_env.sh
- ros2 launch carla_ros_bridge carla_ros_bridge_with_example_ego_vehicle.launch.py
- ros2 launch carla_l5player_lqr_pid_controller_waypoint lqr_launch.py
- ros2 launch carla_waypoint_publisher carla_waypoint_publisher.launch.py
NEW PID 模块启动流程
- 在PID Controler基础上更换导航路径,增加launch启动脚本以及rviz显示全局路径以及历史轨迹
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- ros2 run carla_l5player_pid_new_controller carla_l5player_pid_new_controller_node
- 启动节点以及rviz: ros2 launch carla_l5player_pid_new_controller new_pid_launch.py
PID 模块启动流程
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- ros2 run carla_l5player_pid_controller carla_l5player_pid_controller_node
Stanley 模块启动流程
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- ros2 run carla_l5player_stanley_pid_controller carla_l5player_stanley_pid_controller_node
LQR 模块启动流程
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- ros2 launch carla_l5player_lqr_pid_controller lqr_launch.py
MPC 模块启动流程
- source source_env.sh
- ros2 launch carla_l5player_bridge_ego_vis carla_bridge_ego_vehilce.launch.py
- ros2 launch carla_l5player_mpc_controller mpc_launch.py
场景仿真器启动
首先将carla仿真器通过软连接添加到本项目同级目录下,然后进入项目目录
- source source_env.sh
- ros2 launch carla_ad_demo carla_ad_demo_with_scenario.launch.py scenario_runner_path:=/home/bea20/l5player_premium/auto-driving-planning-control-algorithm-simulation-carla/scenario_runner-0.9.13
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.