Replies: 1 comment 4 replies
-
You need to create a more accurate conversion map between the Autoware ackermann command and the accel/brake/steer message sent to CARLA. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using the autoware raw_vehicle_cmd_converter to get actuator instruction (accel_cmd, brake_cmd, steer_cmd). I want to use this information to drive vehicle in carla. Here is the code:
`#!/usr/bin/env python3
import rclpy
from rclpy.node import Node
from tier4_vehicle_msgs.msg import ActuationCommandStamped
import carla
class CarlaAutowareBridge(Node):
def init(self):
super().init('carla_autoware_bridge')
def main(args=None):
rclpy.init(args=args)
node = CarlaAutowareBridge()
if name == 'main':
main()`
I need help scaling throttle, brake and steer when converting from autoware to carla. How can I figure out the optimal scaling factor that will match driving between two platform. Currently the instruction that autoware is providing, barely moves the vehicle in carla.
Beta Was this translation helpful? Give feedback.
All reactions