- Welcome
- Getting Started With the NVIDIA DriveWorks SDK
- Modules
- Samples
- Tools
- Tutorials
- SDK Porting Guide
- DriveWorks API
- More
Defines module to produce range image via spherical projection of the point cloud.
Data Structures | |
struct | dwPointCloudRangeImageClippingParams |
Defines range image clipping parameters. More... | |
struct | dwPointCloudRangeImageCreatorParams |
Defines point cloud range image creator parameters. More... | |
Typedefs | |
typedef const struct dwPointCloudRangeImageCreatorObject * | dwConstPointCloudRangeImageCreatorHandle_t |
typedef struct dwPointCloudRangeImageCreatorObject * | dwPointCloudRangeImageCreatorHandle_t |
Enumerations | |
enum | dwPointCloudRangeImageType { DW_POINT_CLOUD_IMAGE_TYPE_DISTANCE = 0 , DW_POINT_CLOUD_IMAGE_TYPE_INTENSITY = 1 , DW_POINT_CLOUD_IMAGE_TYPE_2D_GRID = 2 } |
Definition of the image type of Lidar cylindrical projection image. More... | |
struct dwPointCloudRangeImageClippingParams |
Data Fields | ||
---|---|---|
float32_t | farDist | Maximum distance. |
float32_t | maxAzimuthRadians | Maximum yaw angle. |
float32_t | maxElevationRadians | Maximum pitch angle. |
float32_t | minAzimuthRadians | Mimimum yaw angle. |
float32_t | minElevationRadians | Mimimum pitch angle. |
float32_t | nearDist | Minimum distance. |
dwOrientedBoundingBox3f | orientedBoundingBox | Bounding box identifying clipping planes. |
struct dwPointCloudRangeImageCreatorParams |
Data Fields | ||
---|---|---|
dwPointCloudRangeImageClippingParams | clippingParams | Clipping parameters. |
uint32_t | height | Output image height. |
uint32_t | maxInputPoints | Maximum number of point in input point cloud. |
dwMemoryType | memoryType | Memory type, CUDA or CPU. |
dwTransformation3f | transformation | Transformation applied to input points, if 0, identity will be used. |
dwPointCloudRangeImageType | type | Range image type. |
uint32_t | width | Output image width. |
typedef const struct dwPointCloudRangeImageCreatorObject* dwConstPointCloudRangeImageCreatorHandle_t |
Definition at line 60 of file PointCloudRangeImageCreator.h.
typedef struct dwPointCloudRangeImageCreatorObject* dwPointCloudRangeImageCreatorHandle_t |
Definition at line 59 of file PointCloudRangeImageCreator.h.
Definition of the image type of Lidar cylindrical projection image.
Definition at line 63 of file PointCloudRangeImageCreator.h.
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_bindInput | ( | dwPointCloud const *const | pointCloud, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds input point cloud to range image creator.
[in] | pointCloud | Pointer to input buffer |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_bindOutput | ( | dwImageHandle_t const | image, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds output range image to range image creator.
[in] | image | Handle to output range image |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_bindPointCloudOutput | ( | dwPointCloud *const | pointCloud, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds output point cloud to range image creator.
[in] | pointCloud | Pointer to output point cloud. If null provided, any currently bound point cloud will be unbound |
[in] | obj | Handle to range image creator |
DW_POINT_CLOUD_IMAGE_TYPE_DISTANCE
or DW_POINT_CLOUD_IMAGE_TYPE_INTENSITY
image to organize points of input point cloud. Makes sense for unorganized input only. DW_API_PUBLIC dwStatus dwPCRangeImageCreator_getCUDAStream | ( | cudaStream_t *const | stream, |
dwConstPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Gets CUDA stream of range image creator.
[out] | stream | Pointer to CUDA stream handle |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_getDefaultParams | ( | dwPointCloudRangeImageCreatorParams *const | params | ) |
Gets default range image creator parameters.
[out] | params | Pointer to range image creator parameters |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_getImageProperties | ( | dwImageProperties *const | imageProperties, |
dwConstPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Get properties of an image to bind as an output.
[out] | imageProperties | Pointer to image properties |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_initialize | ( | dwPointCloudRangeImageCreatorHandle_t *const | obj, |
dwPointCloudRangeImageCreatorParams const *const | params, | ||
dwContextHandle_t const | ctx | ||
) |
Initializes range image creator.
[out] | obj | Pointer to range image creator handle |
[in] | params | Pointer to range image creator parameters |
[in] | ctx | Handle to the context |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_process | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Organizes input point cloud and projects on the spherical coordinate to form a range image.
If bound point cloud is already organized, the data is simply copied into output range image.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_release | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Releases range image creator.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_reset | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Resets range image creator.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPCRangeImageCreator_setCUDAStream | ( | cudaStream_t const | stream, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Sets CUDA stream of range image creator.
[in] | stream | Handle to CUDA stream |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_bindInput | ( | dwPointCloud const *const | pointCloud, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds input point cloud to range image creator.
[in] | pointCloud | Pointer to input buffer |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_bindOutput | ( | dwImageHandle_t const | image, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds output range image to range image creator.
[in] | image | Handle to output range image |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_bindOutputPointCloud | ( | dwPointCloud *const | pointCloud, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Binds output point cloud to range image creator.
[in] | pointCloud | Pointer to output point cloud. If null provided, any currently bound point cloud will be unbound |
[in] | obj | Handle to range image creator |
DW_POINT_CLOUD_IMAGE_TYPE_DISTANCE
or DW_POINT_CLOUD_IMAGE_TYPE_INTENSITY
image to organize points of input point cloud. Makes sense for unorganized input only. DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_getCUDAStream | ( | cudaStream_t *const | stream, |
dwConstPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Gets CUDA stream of range image creator.
[out] | stream | Pointer to CUDA stream handle |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_getDefaultParams | ( | dwPointCloudRangeImageCreatorParams *const | params | ) |
Gets default range image creator parameters.
[out] | params | Pointer to range image creator parameters |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_getImageProperties | ( | dwImageProperties *const | imageProperties, |
dwConstPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Get properties of an image to bind as an output.
[out] | imageProperties | Pointer to image properties |
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_initialize | ( | dwPointCloudRangeImageCreatorHandle_t *const | obj, |
dwPointCloudRangeImageCreatorParams const *const | params, | ||
dwContextHandle_t const | ctx | ||
) |
Initializes range image creator.
[out] | obj | Pointer to range image creator handle |
[in] | params | Pointer to range image creator parameters |
[in] | ctx | Handle to the context |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_process | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Organizes input point cloud and projects on the spherical coordinate to form a range image.
If bound point cloud is already organized, the data is simply copied into output range image.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_release | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Releases range image creator.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_reset | ( | dwPointCloudRangeImageCreatorHandle_t const | obj | ) |
Resets range image creator.
[in] | obj | Handle to range image creator |
DW_API_PUBLIC dwStatus dwPointCloudRangeImageCreator_setCUDAStream | ( | cudaStream_t const | stream, |
dwPointCloudRangeImageCreatorHandle_t const | obj | ||
) |
Sets CUDA stream of range image creator.
[in] | stream | Handle to CUDA stream |
[in] | obj | Handle to range image creator |