Lidar
Classes:
- class pegasus.simulator.logic.graphical_sensors.lidar.Lidar
Bases:
GraphicalSensor
Methods:
__init__
(lidar_name[, config])Initialize the Lidar class
initialize
(vehicle)Initialize the Lidar sensor
start
()Method that when implemented should handle the begining of the simulation of vehicle
update
(state, dt)Method that should be implemented by the class that inherits Sensor.
Attributes:
(dict) The 'state' of the sensor, i.e. the data produced by the sensor at any given point in time.
- __init__(lidar_name, config={})
Initialize the Lidar class
The available configurations for the lidar are available in the folder exts/omni.isaac.sensor/data/lidar_configs Check also the official documentation: https://docs.omniverse.nvidia.com/isaacsim/latest/features/sensors_simulation/isaac_sim_sensors_rtx_based_lidar.html
- initialize(vehicle)
Initialize the Lidar sensor
- start()
Method that when implemented should handle the begining of the simulation of vehicle
- update(state, dt)
Method that should be implemented by the class that inherits Sensor. This is where the actual implementation of the sensor should be performed.
- property state
(dict) The ‘state’ of the sensor, i.e. the data produced by the sensor at any given point in time