Point Cloud Sampling by Regular Distance
1 次查看(过去 30 天)
显示 更早的评论
Recently I had implment findNearestNeighbors from matlab toolbox. But instead of searching by K — Number of nearest neighbors, can it be specific distance from the query point? Like for example export the points 1cm apart from query point for individually compare with best fit plane?
Another question is that if I need to loop through every point of the point cloud to do the query. Is there any kd/octree operation needed? I can't imagine how matlab is running 10million of loop and do plane fitting afterwards.
Thanks guys
3 个评论
回答(1 个)
Sanjana
2024-6-10
编辑:Sanjana
2024-6-18
Hi Focal,
I understand that you are looking for functions to find "nearest neighbours" in a pointCloud at certain distance from a point.
You can use the "findNeighboursinRadius" function to find indices of the points at a certain distance from a point, and then use "select" function to select obtained points in the input pointCloud.
Refer to the following example, for more information
Hope this helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Point Cloud Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!