Streaming data out of CARLA #4123
-
Hi there, I'd like to stream out the sensor data (e.g. collision sensor) along with vehicle control information (e.g. "Speed") through API. Any help is greatly appreciated. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In your code I didn't see any clue that you were trying to fetch sensor data. The port 8000 is used for TrafficManager in Carla. Principally if you want to get sensor data, you could settle your global "data-container(like list)" in the callback function of your target sensor. In each world tick you send out this "data-container". But remember to clear it for each tick. |
Beta Was this translation helpful? Give feedback.
In your code I didn't see any clue that you were trying to fetch sensor data. The port 8000 is used for TrafficManager in Carla. Principally if you want to get sensor data, you could settle your global "data-container(like list)" in the callback function of your target sensor. In each world tick you send out this "data-container". But remember to clear it for each tick.