You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a "visualize" helper function that passes the scenes to visualize, a timestep in which the scenes were generated and any mapping from Entity.id to Carla id if necessary. Something like
visualize(scenes:` List, timestep: double, entity_map: Dict{Any, Int})
for i = 1 : length(scenes)
start_time = Now()
scene = scenes[i]
update_world(carla_world, scene, entity_map, handiness)
sleep(start_time + timestep - Now())
end
The text was updated successfully, but these errors were encountered:
- Creates a helper function in the autosim_utils module to visualize pre-made scenes calculated during an AS simulation on the connected Carla server.
- Adds the new helper function to the Julia project.
- Imports Dates in the main Julia project.
- Adds Dates to the project.toml.
Create a "visualize" helper function that passes the scenes to visualize, a timestep in which the scenes were generated and any mapping from Entity.id to Carla id if necessary. Something like
The text was updated successfully, but these errors were encountered: