You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a feature request, inspired by the k-d tree in scipy:
Could there be a function that finds all points in a KdTreeother within a dist for all points in a KdTreeself? So basically the scipy function query_ball_tree.
Thanks.
The text was updated successfully, but these errors were encountered:
A related (probably simpler) problem is finding, for each point in the point cloud, its nearest neighbors in the same cloud - the current strategy requires traversing the tree from the top for each point which could probably be improved on.
Hi there! Thanks for this great repo.
I have a feature request, inspired by the k-d tree in scipy:
Could there be a function that finds all points in a
KdTree
other
within adist
for all points in aKdTree
self
? So basically the scipy functionquery_ball_tree
.Thanks.
The text was updated successfully, but these errors were encountered: