up vote 5 down vote favorite
4
share [g+] share [fb]

i have a 3D pointcloud and i'd like to efficiently query all points within distance d from an arbitrary point p (which is not necessarily part of the stored pointcloud)

the querry would look something like

Pointcloud getAllPoints(Point p, float d);

what accelerationstructure would be appropriate for this? A range-tree seems to be appropriate only for querrying rectangular volumes, not sphere volumes (of course i could query the boundingbox of the sphere and then sort out all vertices that have larger distance than d - but maybe there is a better way to do this??)

thanks!

according to Novelocrats suggestion, i try to define the desired functions of the structure:

SearchStructure Create(Set<Point> cloud) 
Set<Point> Query(SearchStructure S, Point p, float maxDistance)
SearchStructure Remove(Point p)
SearchStructure Insert(Point p)
SearchStructure Displace(Set<Point> displacement) //where each value describes an offsetVector to the currently present points

usually, after n queries, the points get displaced and a few (not many!) insertions and deletions are made. the offset vectors are very small compared to the boundingbox of all points

link|improve this question
I think linear time creation might be asking too much, and could discourage people from providing good answers to the primary question. Are you constantly querying new pointclouds as well? If the new pointclouds are the result of changes in the existing one, modification of the structure might be cheaper. – Novelocrat Aug 23 '09 at 14:07
"Query" has only one 'r' in it. I suggest fixing that for posterity. – Novelocrat Aug 23 '09 at 14:09
Novelocrat: you are right - the new pointclouds are modifications of old ones, but pretty difficult ones (all the points move, each one in another direction, also, new points may be added that were not present before) so i thoght recreating the map each time will be the best. there will be aproximately n such queries for a map holding n points, before the pointcloud moves – genesys Aug 23 '09 at 14:13
In keeping with the style of many algorithms texts, you may want to specify all of the desired operations in procedure form: SearchStructure Create(Set<Point> cloud) Set<Point> Query(SearchStructure S, Point p, float maxDistance) Note the non-member style; this makes it easier for someone to look at this description and get a very quick view of the problem you wish to solve. – Novelocrat Aug 23 '09 at 14:15
You should specify how these structures will change as your program runs, rather than presuming that complete reconstruction will be the best approach. Computational geometers have done some really clever work. Considering one of their major historical funding sources (US Office of Naval Research) moving points would have been a topic of great interest. You should fold all of that information into the question. – Novelocrat Aug 23 '09 at 14:17
show 3 more comments
feedback

6 Answers

What you want is a structure that decomposes space so that particular regions can be found efficiently. A properly decomposed octree or kD-tree should allow you to do this well, as you would only 'open' the section of the tree containing your point p to look for points nearby. This should let you put a fairly low asymptotic bound on how many extra points you need to compare distance to (knowing that below some level of decomposition, all points are close enough). Unfortunately, I don't know the literature in this area well enough to give more detailed pointers. My encounter with these things is from the Barnes-Hut n-Body simulation algorithm.

Here's another question closely related to this one. And another. And a third, mentioning a data structure (Hilbert R-Trees) that I hadn't previously heard of.

link|improve this answer
i thoght about the octree but it seems to be not apropriate, since there meight be points that are in fact within range d, which lie in another section than p itself. so one would have to querry all sections that intersect with the sphere defined by p and d – genesys Aug 23 '09 at 13:59
That's a good point. If there were some range-tree variant of octrees, then you'd be golden. – Novelocrat Aug 23 '09 at 14:05
feedback

I don't understand your API, you can round up all points in a PointCloud that lie inside an arbitrary sphere, but you also say that the point-clouds are stored? In that case shouldn't you get a list of PointClouds that is inside the given sphere, otherwise what is the point (excuse the pun) with having the PointClouds stored?

Instead of trying to define the API in advance, define it when you need it. There is no need to implement something that never will be used, let alone optimize a function that never will be called (unless it's for fun of course :)).

I think you should implement the bounding-box culling, followed by the more detailed sphere search as a first implementation. Perhaps it's not such a bottleneck as you think, and perhaps you will have far more serious bottlenecks to consider. It's always possible to optimize later when you actually see that you have everything working toghether as you have planned.

link|improve this answer
feedback

Have a look at A Template for the Nearest Neighbor Problem (Larry Andrews at DDJ). Its only 2D, having a retrival complexity of O(log n), but it might be adopted for 3D as well.

link|improve this answer
feedback

VTK can help:

void vtkAbstractPointLocator::FindPointsWithinRadius ( double R, double x, double y, double z, vtkIdList * result )

Subclasses of vtkAbstractPointLocator contain different data structures for search acceleration: regular buckets, kd-trees, and octrees.

link|improve this answer
feedback

A map with key equal to the distance and value being the Point itself would allow you to query for all Points less than a given distance or within a given range.

link|improve this answer
the distance can't be key, since p is an arbitrary point (so p is an argument of the querry - i wasn't specific enough on that) – genesys Aug 23 '09 at 13:53
Once you specify the point you populate the data structure. Change the point, repopulate. I think it still works. – duffymo Aug 23 '09 at 13:57
the point is a different one in each query. updating all the distances to point p would already need O(n) time – genesys Aug 23 '09 at 14:01
Yes, I agree, but I don't see any way out of that. Do you? – duffymo Aug 23 '09 at 14:27
feedback

Well, it depends on what other uses you need for the data structure.

You can have a list of distances from point p to other points, ordered by distance, and map these lists to the points with a hashmap.

map:
p1 -> [{p2, d12}, {p4, d14}, {p3, d13}]
p2 -> ...
...

You can look up the point in the map, and iterate the list until the distance is higher than required.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown