intel / ad-rss-lib

Library implementing the Responsibility Sensitive Safety model (RSS) for Autonomous Vehicles
https://intel.github.io/ad-rss-lib/
GNU Lesser General Public License v2.1
328 stars 137 forks source link

Is it possible to use ad-rss-lib with only LiDAR as an input? #104

Closed vivekgourav closed 6 months ago

vivekgourav commented 3 years ago

Since the input to the world model is sensor information & AD Map data. (For eg: Can Gazebo models be used?) Also, what are the steps for integration of ad-rss-lib outside of CARLA using Ad_map_access?

berndgassmann commented 3 years ago

Hi,

the input to the world model is in general object data; where this data is derived from is not specified. One can extract the data from internal simulator ground truth data (as e.g. done within the RssSensor integrated into CARLA), derive from processed sensor measurements, or from any other reliable data source. The information required when using ad_rss_map_integration functionality is mainly defined by the RssObjectData struct which is passed to the functions in RssSceneCreation. The unit tests provide some simple examples. You mainly need:

These are the main steps, I'd say.