Adding new sensors (like Radar) #3322
-
Hello, I am working on a project for my school and we are using airsim to simulate autonomous vehicles. The LiDAR sensor has been very useful. But, I was looking to include a radar sensor as well but there isnt one. I tried looking into the docs to add new sensors, but I don't know where to start in the codebase. I would greatly appreciate some help with:
Any help is greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @chcardoz , others will probably be able to provide more help with this, but I personally would start with looking at PRs related to what I'm trying to do when I want to change or add anything to Airsim. For example, #1424 (the PR where LiDAR got added) could be a good place to start (in addition to other PRs related to the topic). Also, as far as I remember, RADAR data points are similar (in concept) to LiDAR data points. Why not look into just using the data provided by the currently available LiDAR sensor and manipulating it on your client (ie: a python script) to simulate RADAR data? |
Beta Was this translation helpful? Give feedback.
Hi @chcardoz , others will probably be able to provide more help with this, but I personally would start with looking at PRs related to what I'm trying to do when I want to change or add anything to Airsim. For example, #1424 (the PR where LiDAR got added) could be a good place to start (in addition to other PRs related to the topic).
Same thing with the Python APIs. I'd look at any PR where a new API was added to get how to get things going.
Also, as far as I remember, RADAR data points are similar (in concept) to LiDAR data points. Why not look into just using the data provided by the currently available LiDAR sensor and manipulating it on your client (ie: a python script) to simulate R…