This ROS package aims at providing a simple ROS bridge for CARLA simulator.
Important Note: This documentation is for CARLA versions newer than 0.9.4.
- Cameras (depth, segmentation, rgb) support
- Transform publications
- Manual control using ackermann msg
- Handle ROS dependencies
- Marker/bounding box messages for cars/pedestrian
- Lidar sensor support
- Support CARLA synchronous mode
- Add traffic light support
#setup folder structure
mkdir -p ~/carla-ros-bridge/catkin_ws/src
cd ~/carla-ros-bridge
git clone https://github.com/carla-simulator/ros-bridge.git
cd catkin_ws/src
ln -s ../../ros-bridge
source /opt/ros/kinetic/setup.bash
cd ..
#install required ros-dependencies
rosdep update
rosdep install --from-paths src --ignore-src -r
#build
catkin_make
For more information about configuring a ROS environment see http://wiki.ros.org/ROS/Tutorials/InstallingandConfiguringROSEnvironment
First run the simulator (see carla documentation: http://carla.readthedocs.io/en/latest/)
./CarlaUE4.sh -windowed -ResX=320 -ResY=240
Wait for the message:
Waiting for the client to connect...
Then start the ros bridge (choose one option):
export PYTHONPATH=$PYTHONPATH:<path/to/carla/>/PythonAPI/<your_egg_file>
source ~/carla-ros-bridge/catkin_ws/devel/setup.bash
# Option 1: start the ros bridge
roslaunch carla_ros_bridge carla_ros_bridge.launch
# Option 2: start the ros bridge together with RVIZ
roslaunch carla_ros_bridge carla_ros_bridge_with_rviz.launch
# Option 3: start the ros bridge together with an example ego vehicle
roslaunch carla_ros_bridge carla_ros_bridge_with_example_ego_vehicle.launch
You can setup the ros bridge configuration carla_ros_bridge/config/settings.yaml.
If the rolename is within the list specified by ROS parameter /carla/ego_vehicle/rolename
, the client is interpreted as an controllable ego vehicle and all relevant ROS topics are created.
In default mode (synchronous_mode: false
) data is published:
- on every
world.on_tick()
callback - on every
sensor.listen()
callback
CAUTION: In synchronous mode, only the ros-bridge is allowed to tick. Other CARLA clients must passively wait.
In synchronous mode (synchronous_mode: true
), the bridge waits for all sensor data that is expected within the current frame. This might slow down the overall simulation but ensures reproducible results.
Additionally you might set synchronous_mode_wait_for_vehicle_control_command
to true
to wait for a vehicle control command before executing the next tick.
It is possible to control the simulation execution:
- Pause/Play
- Execute single step
The following topic allows to control the stepping.
Topic | Type |
---|---|
/carla/control |
carla_msgs.CarlaControl |
A CARLA Control rqt plugin is available to publish to the topic.
The ego vehicle sensors are provided via topics with prefix /carla/ego_vehicle/<sensor_topic>
Currently the following sensors are supported:
Topic | Type |
---|---|
/carla/<ROLE NAME>/camera/rgb/<SENSOR ROLE NAME>/image_color |
sensor_msgs.Image |
/carla/<ROLE NAME>/camera/rgb/<SENSOR ROLE NAME>/camera_info |
sensor_msgs.CameraInfo |
Topic | Type |
---|---|
/carla/<ROLE NAME>/lidar/<SENSOR ROLE NAME>/point_cloud |
sensor_msgs.PointCloud2 |
Topic | Type | Description |
---|---|---|
/carla/<ROLE NAME>/gnss/front/gnss |
sensor_msgs.NavSatFix | publish gnss location |
Topic | Type | Description |
---|---|---|
/carla/<ROLE NAME>/collision |
carla_msgs.CarlaCollisionEvent | publish collision events |
Topic | Type | Description |
---|---|---|
/carla/<ROLE NAME>/lane_invasion |
carla_msgs.CarlaLaneInvasionEvent | publish events on lane-invasion |
Topic | Type | Description |
---|---|---|
/carla/<ROLE NAME>/objects |
derived_object_msgs.ObjectArray | all vehicles and walkers, except the ego vehicle |
Topic | Type |
---|---|
/carla/<ROLE NAME>/vehicle_control_cmd (subscriber) |
carla_msgs.CarlaEgoVehicleControl |
/carla/<ROLE NAME>/vehicle_control_cmd_manual (subscriber) |
carla_msgs.CarlaEgoVehicleControl |
/carla/<ROLE NAME>/vehicle_control_manual_override (subscriber) |
std_msgs.Bool |
/carla/<ROLE NAME>/vehicle_status |
carla_msgs.CarlaEgoVehicleStatus |
/carla/<ROLE NAME>/vehicle_info |
carla_msgs.CarlaEgoVehicleInfo |
There are two modes to control the vehicle.
- Normal Mode (reading commands from
/carla/<ROLE NAME>/vehicle_control_cmd
) - Manual Mode (reading commands from
/carla/<ROLE NAME>/vehicle_control_cmd_manual
)
This allows to manually override a Vehicle Control Commands published by a software stack. You can toggle between the two modes by publishing to /carla/<ROLE NAME>/vehicle_control_manual_override
.
carla_manual_control makes use of this feature.
For testing purposes, you can stear the ego vehicle from the commandline by publishing to the topic /carla/<ROLE NAME>/vehicle_control_cmd
.
Examples for a ego vehicle with role_name 'ego_vehicle':
Max forward throttle:
rostopic pub /carla/ego_vehicle/vehicle_control_cmd carla_msgs/CarlaEgoVehicleControl "{throttle: 1.0, steer: 0.0}" -r 10
Max forward throttle with max steering to the right:
rostopic pub /carla/ego_vehicle/vehicle_control_cmd carla_msgs/CarlaEgoVehicleControl "{throttle: 1.0, steer: 1.0}" -r 10
The current status of the vehicle can be received via topic /carla/<ROLE NAME>/vehicle_status
.
Static information about the vehicle can be received via /carla/<ROLE NAME>/vehicle_info
Topic | Type |
---|---|
/carla/<ROLE NAME>/twist_cmd (subscriber) |
geometry_msgs.Twist |
CAUTION: This control method does not respect the vehicle constraints. It allows movements impossible in the real world, like flying or rotating.
You can also control the vehicle via publishing linear and angular velocity within a Twist datatype.
Currently this method applies the complete linear vector, but only the yaw from angular vector.
In certain cases, the Carla Control Command is not ideal to connect to an AD stack.
Therefore a ROS-based node carla_ackermann_control
is provided which reads AckermannDrive messages.
You can find further documentation here.
Topic | Type | Description |
---|---|---|
/carla/objects |
derived_object_msgs.ObjectArray | all vehicles and walkers |
/carla/marker |
visualization_msgs.Marker | visualization of vehicles and walkers |
/carla/actor_list |
carla_msgs.CarlaActorList | list of all carla actors |
Topic | Type | Description |
---|---|---|
/carla/status |
carla_msgs.CarlaStatus | |
/carla/world_info |
carla_msgs.CarlaWorldInfo | Info about the CARLA world/level (e.g. OPEN Drive map) |
Topic | Type | Description |
---|---|---|
/carla/walker/<ID>/walker_control_cmd (subscriber) |
carla_msgs.CarlaWalkerControl | Control a walker |
/carla/walker/<ID>/odometry |
nav_msgs.Odometry | odometry of walker |
Topic | Type | Description |
---|---|---|
/carla/vehicle/<ID>/odometry |
nav_msgs.Odometry | odometry of vehicle |
It is possible to draw markers in CARLA.
Caution: Markers might affect the data published by sensors.
The following markers are supported in 'map'-frame:
- Arrow (specified by two points)
- Points
- Cube
- Line Strip
Topic | Type | Description |
---|---|---|
/carla/debug_marker (subscriber) |
visualization_msgs.MarkerArray | draw markers in CARLA world |
carla_ego_vehicle
provides a generic way to spawn an ego vehicle and attach sensors to it. You can find further documentation here.
carla_infrastructure
provides a generic way to spawn a set of infrastructure sensors defined in a config file. You can find further documentation here.
To make use of the Carla waypoint calculation a ROS Node is available to get waypoints. You can find further documentation here.
You're missing Carla Python. Please execute:
export PYTHONPATH=$PYTHONPATH:<path/to/carla/>/PythonAPI/<your_egg_file>
Please note that you have to put in the complete path to the egg-file including the egg-file itself. Please use the one, that is supported by your Python version. Depending on the type of CARLA (pre-build, or build from source), the egg files are typically located either directly in the PythonAPI folder or in PythonAPI/dist.
Check the installation is successfull by trying to import carla from python:
python -c 'import carla;print("Success")'
You should see the Success message without any errors.