I need to quickly find the k nearest points to a plane (or hyperplane) in 3 (or more) dimensions. Is there a fast way to perform this search, using some sort of clever data structure (similar to how a kd-tree works for k nearest neighbors)?
I know I can rotate the plane and all the points so that the plane is orthogonal to one of the axes, then measure the distance of each point to the plane by simply using the ordinate in that axis. However, the time complexity of this brute force approach is O(N), where (N) is the number of points. Since I have to find the k nearest neighbors for a large number of planes and a large number of points, I need to find a faster algorithm if possible.
measure the distance by using dot product with hyper plane normal... So let:
n
- be the hyperplane normal unit vectorp0
- be any point point on the hyperplanep[i]
- be i-th point from your pointcloudi={ 0,1,2...n-1 }
then the distance to hyperplane plane is:
as you can see no need to transform/align anything and its
O(1)
without any expensive operations. I expect that any pre sorting of points or using clever structures will be slower than this in most cases...Now you got 2 options either compute the
d
for each point and then quick sort which leads toO(n.log(n))
time andO(n)
space complexity.Or remember
k
closest points on the run leading toO(k*n)
time andO(k)
space.So if
k
is small(k < log(n))
or you have not enough memory to spare use second approach otherwise use first one ...