-
Notifications
You must be signed in to change notification settings - Fork 787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize obstacle segmentation for organized point clouds #1045
Comments
Hi @matlabbe Can you please explain more about your idea? We analyzed timing and cluster segmentation using radiusSearch is taking huge computation time. We ae trying to optimize this time using GPU. You mention when received point cloud is ordered, clustering is faster. When we provided ordered point cloud data, rtabmap::process removes NaN points at some point and send unordered point cloud in segmentObstaclesFromGround function. |
Are you trying the pull request? There could be some voxel filtering to disable like setting |
No not yet. Just wanted to understand your idea, how unordered and ordered point cloud effects on segmentation computation time. When you say normal clustering are you referring pcl::EuclideanClusterExtraction ? |
Based on the description of this PR, with organized point clouds we can
|
The idea is that normal computation speed could be increased and be more accurate when we received an organized point cloud. The normal clustering could be also faster. In both case, no radius search required.
This could be useful for point cloud created from depth camera, or lidar scans ordered by rings.
The text was updated successfully, but these errors were encountered: