This tutorial shows how to use point cloud filter.
To initialize the module,
dwPointCloudFilterParams params{};
dwPointCloudFilter_getDefaultParameters(¶ms);
dwPointCloudFilter_initialize(&filter, ¶ms, context);
By default the module only filters out invalid points. A point is considered to be invalid when all coordinates are zeros. In addition it is possible to specify an oriented bounding box and cull points inside or outside the box.
params.box = &orientedBoundingBox;
params.type = DW_POINT_CLOUD_FILTER_TYPE_INNER;
Note these parameters may be specified in run time with calling:
dwPointCloudFilter_setBoundingBox(&orientedBoundingBox, filter);
dwPointCloudFilter_setType(type, filter);
All operations may be performed either on CPU or on GPU. To enable GPU version set params.enableCuda
flag to true
.
To apply filter,
dwPointCloudFilter_bindInput(inputPointCloud, filter);
dwPointCloudFilter_bindOutput(outputPointCloud, filter);
dwPointCloudFilter_process(filter);
To release the module,
dwPointCloudFilter_release(filter);
For more details see Point Cloud Processing Sample