当前位置:网站首页>ROS Bridge 笔记(05)— carla_ackermann_control 功能包(将Ackermann messages 转化为 CarlaEgoVehicleControl 消息)
ROS Bridge 笔记(05)— carla_ackermann_control 功能包(将Ackermann messages 转化为 CarlaEgoVehicleControl 消息)
2022-07-07 04:58:00 【wohu1104】
官网:https://carla.readthedocs.io/projects/ros-bridge/en/latest/carla_ackermann_control/
参考:https://blog.csdn.net/dfman1978/article/details/125077551
carla_ackermann_control 包使用 Ackermann messages 控制 CARLA 车辆。该包将 Ackermann messages 转换为CarlaEgoVehicleControl 消息。
它从 CARLA 读取车辆信息,并将该信息传递给一个基于 Python 的PID 控制器,称为 simple-pid ,以控制加速度和速度。
在 ros_bridge中,除了使用 manual_control包来直接使用键盘来控制仿真小车,还可以通过ackermann(阿克曼)来控制。在 carla和 autoware联合仿真的过程中,autoware最终的控制信息是要转换为 ackermann控制指令,最后控制仿真车。
1. 配置参数
在使用 ROS 1和 ROS 2时,可以在 配置文件 中初始设置参数,在运行时通过 ROS 1 动态重新配置参数 dynamic_reconfigure。
2. 测试控制消息
通过 topic /carla/<ROLE NAME>/ackermann_cmd 向小车发送命令来测试设置。例如,运行如下命令,将角色名为 ego_vehicle 的自我车辆以10米/秒的速度向前移动:
rostopic pub /carla/ego_vehicle/ackermann_cmd ackermann_msgs/AckermannDrive \
"{steering_angle: 0.0, steering_angle_velocity: 0.0, speed: 10, acceleration: 0.0, jerk: 0.0}" -r 10
或者让车辆以1.22弧度的角度转弯时向前移动:
rostopic pub /carla/ego_vehicle/ackermann_cmd ackermann_msgs/AckermannDrive \
"{steering_angle: 1.22, steering_angle_velocity: 0.0, speed: 10, acceleration: 0.0, jerk: 0.0}" -r 10
上面的命令执行后,通过 rostopic 命令查看,该 topic 在没有订阅者的情况下车辆是不会运动的。
[email protected]:~/tool$ rostopic info /carla/ego_vehicle/ackermann_cmd
Type: ackermann_msgs/AckermannDrive
Publishers:
* /rostopic_16525_1657090091755 (http://wohu-pc:39319/)
Subscribers: None
[email protected]:~/tool$
其中 /carla/ego_vehicle/ackermann_cmd就是发过来的 ackermann命令,节点对这个命令进行解析,然后转换成 ros_bridge节点可以识别的消息格式:/carla/ego_vehicle/vehicle_conttrol_cmd,发给 /carla_ros_bridge节点。
可以在 carla-ros-bridge/catkin_ws/src/ros-bridge/carla_ros_bridge/src/carla_ros_bridge/ego_vehicle.py代码里看到
self.control_subscriber = node.new_subscription(
CarlaEgoVehicleControl,
self.get_topic_prefix() + "/vehicle_control_cmd",
lambda data: self.control_command_updated(data, manual_override=False),
qos_profile=10)
self.manual_control_subscriber = node.new_subscription(
CarlaEgoVehicleControl,
self.get_topic_prefix() + "/vehicle_control_cmd_manual",
lambda data: self.control_command_updated(data, manual_override=True),
qos_profile=10)
真正的执行函数是 control_command_updated,其内容如下:
def control_command_updated(self, ros_vehicle_control, manual_override):
""" Receive a CarlaEgoVehicleControl msg and send to CARLA This function gets called whenever a ROS CarlaEgoVehicleControl is received. If the mode is valid (either normal or manual), the received ROS message is converted into carla.VehicleControl command and sent to CARLA. This bridge is not responsible for any restrictions on velocity or steering. It's just forwarding the ROS input to CARLA :param manual_override: manually override the vehicle control command :param ros_vehicle_control: current vehicle control input received via ROS :type ros_vehicle_control: carla_msgs.msg.CarlaEgoVehicleControl :return: """
if manual_override == self.vehicle_control_override:
vehicle_control = VehicleControl()
vehicle_control.hand_brake = ros_vehicle_control.hand_brake
vehicle_control.brake = ros_vehicle_control.brake
vehicle_control.steer = ros_vehicle_control.steer
vehicle_control.throttle = ros_vehicle_control.throttle
vehicle_control.reverse = ros_vehicle_control.reverse
vehicle_control.manual_gear_shift = ros_vehicle_control.manual_gear_shift
vehicle_control.gear = ros_vehicle_control.gear
self.carla_actor.apply_control(vehicle_control)
self._vehicle_control_applied_callback(self.get_id())
注释很清楚的说明了 接收 CarlaEgoVehicleControl消息,发送给 CARLA。
self.carla_actor.apply_control(vehicle_control)
这个函数就是来控制仿真车辆。
3. 总结
该包将 Ackermann messages 转换为CarlaEgoVehicleControl 消息的,实际在 ROS Bridge 中使用的是 CarlaEgoVehicleControl 消息发送给 CARLA 的,所以如果是 ROS 与 Autoware 对接那么就应该使用这个包,如果是和其它系统对接,比如 Apollo,那么只需要将 Apollo 的相应消息转化为 CarlaEgoVehicleControl 格式即可。
4. ROS API
4.1 Subscriptions
| Topic | Type | Description |
|---|---|---|
| /carla//ackermann_cmd | ackermann_msgs.AckermannDrive | Subscriber for steering commands |
4.2 Publications
| Topic | Type | Description |
|---|---|---|
| /carla//ackermann_control/control_info | carla_ackermann_control.EgoVehicleControlInfo | The current values used within the controller (useful for debugging) |
边栏推荐
猜你喜欢
![[quick start of Digital IC Verification] 17. Basic grammar of SystemVerilog learning 4 (randomization)](/img/39/cac2b5492d374da393569e2ab467a4.png)
[quick start of Digital IC Verification] 17. Basic grammar of SystemVerilog learning 4 (randomization)

Linux server development, MySQL transaction principle analysis

Qt学习28 主窗口中的工具栏

Codeforces Global Round 19

buureservewp(2)

Implementation of replacement function of shell script

Yugu p1020 missile interception (binary search)

【数字IC验证快速入门】15、SystemVerilog学习之基本语法2(操作符、类型转换、循环、Task/Function...内含实践练习)

LeetCode简单题之判断一个数的数字计数是否等于数位的值

微信小程序基本组件使用介绍
随机推荐
Qt学习28 主窗口中的工具栏
[2022 ciscn] replay of preliminary web topics
【数字IC验证快速入门】17、SystemVerilog学习之基本语法4(随机化Randomization)
Use and analysis of dot function in numpy
Qt学习27 应用程序中的主窗口
JSON data flattening pd json_ normalize
3D reconstruction - stereo correction
Summary of redis functions
Li Kou interview question 04.01 Path between nodes
buureservewp(2)
Find the mode in the binary search tree (use medium order traversal as an ordered array)
Recursive method to construct binary tree from preorder and inorder traversal sequence
Linux server development, MySQL stored procedures, functions and triggers
MySQL multi column index (composite index) features and usage scenarios
Quickly use Jacobo code coverage statistics
DNS server configuration
Pytest+allure+jenkins installation problem: pytest: error: unrecognized arguments: --alluredir
Problem solving: unable to connect to redis
Zsh shell adds automatic completion and syntax highlighting
【VHDL 并行语句执行】