NVIDIA DriveWorks API: Lidar
Description: This file defines the Lidar sensor.
Definition in file Lidar.h.
|
| DW_API_PUBLIC dwStatus | dwSensorLidar_disableDecoding (dwSensorHandle_t sensor) |
| | Disable the decoding of the Lidar packets, which frees additional CPU load. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_enableDecoding (dwSensorHandle_t sensor) |
| | Enables the decoding of the Lidar packets, which incurs an additional CPU load. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_getDecodingFormat (dwLidarDecodeFormat *format, dwSensorHandle_t sensor) |
| | Gets the selected decoding format of the point cloud. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_getProperties (dwLidarProperties *lidarProperties, dwSensorHandle_t sensor) |
| | Gets information about the Lidar sensor. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_isDecodingEnabled (dwBool *enable, dwSensorHandle_t sensor) |
| | Retrieves the state of packet decoding. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_processRawData (const dwLidarDecodedPacket **data, const uint8_t *rawData, size_t size, dwSensorHandle_t sensor) |
| | Decodes RAW data previously read and returns a pointer to it. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_readPacket (const dwLidarDecodedPacket **data, dwTime_t timeout_us, dwSensorHandle_t sensor) |
| | Reads one scan packet. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_returnPacket (const dwLidarDecodedPacket *scan, dwSensorHandle_t sensor) |
| | Returns the data read to the internal pool. More...
|
| |
| DW_API_PUBLIC dwStatus | dwSensorLidar_setDecodingFormat (dwLidarDecodeFormat format, dwSensorHandle_t sensor) |
| | Sets decoding format of the point cloud. More...
|
| |