14 lines
494 B
Python
Executable File
14 lines
494 B
Python
Executable File
|
|
# This recipe shows how to draw traffic light actor bounding boxes from a world snapshot.
|
|
|
|
# ....
|
|
debug = world.debug
|
|
world_snapshot = world.get_snapshot()
|
|
|
|
for actor_snapshot in world_snapshot:
|
|
actual_actor = world.get_actor(actor_snapshot.id)
|
|
if actual_actor.type_id == 'traffic.traffic_light':
|
|
debug.draw_box(carla.BoundingBox(actor_snapshot.get_transform().location,carla.Vector3D(0.5,0.5,2)),actor_snapshot.get_transform().rotation, 0.05, carla.Color(255,0,0,0),0)
|
|
# ...
|
|
|