|
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZ >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZ.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointNormal >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointNormal.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZRGB >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZRGB.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZRGBNormal >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZRGBNormal.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZI >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZI.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZINormal >::Ptr &cloud, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZINormal.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZ >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZ with indices.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointNormal >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointNormal with indices.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZRGB >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZRGB with indices.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZRGBNormal >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZRGBNormal with indices.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZI >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZI with indices.
|
| |
|
pcl::IndicesPtr RTABMAP_CORE_EXPORT | rtabmap::util3d::radiusFiltering (const pcl::PointCloud< pcl::PointXYZINormal >::Ptr &cloud, const pcl::IndicesPtr &indices, float radiusSearch, int minNeighborsInRadius) |
| | Radius filtering for point cloud of type pcl::PointXYZINormal with indices.
|
| |
Filters points based on the number of neighbors within a given radius.
This function performs a radius-based outlier filtering on a point cloud. It returns a set of point indices where each corresponding point has more than minNeighborsInRadius neighboring points within the specified radiusSearch.