Reputation: 11
I want to train an AI for autonomous driving using reinforcement learning that you can potentially race against while paying attention to good driving and following traffic rules.
I am looking at 2 different tools (Carla and BeamNG). Carla gives a lot of Outputs regarding your driving (like collision detection, crossing lanes, ...) and while looking at the BeamNG.py documentation I only found something regarding the aggressiveness of your driving but nothing regarding Collision or traffic signs and stuff like that.
Does BeamNG.PY API offer something for that?
I appreciate all answers and have a great day!
I checked the docu and didn't find anything in the examples
Upvotes: 1
Views: 69
Reputation: 11
Of course, you can take a look at the Roads Sensor and Damage Sensor. The Roads Sensor
gives you detailed information about the roads which the vehicle is now running on. And the Damage
sensor, not only give you the collision information, but also a detailed list of damage in different parts of the car.
Upvotes: 1