Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
271 views

Closest group of 3 points

Is there a known, efficient algorithm for finding the closest group of three points in a cloud? This is similar to the closest pair of points problem but I am looking for three points instead of two. ...
3
votes
2answers
108 views

Closest pair of points algorithm

I am trying to implement a simpler version of this algorithm but which works better than the quadratic algorithm. My idea basically is to sort the points by only x coordinate and try to solve it from ...
2
votes
4answers
176 views

Shortest distance pair with points given on a line?

Can someone suggest an algorithm to find out the shortest distance pair of unsorted, colinear points? I've got one solution which does this in O(nlogn) by just doing the closest pair of points in 2D ...
1
vote
4answers
367 views

optimize nearest neighbor query on 70 million extremely high density spatial point cloud on SQL Server 2008

I have about 75 million records in a SQL Server 2008 R2 Express database. Each is a lat long corresponding to some value. The table has geography column. I am trying to find one nearest neighbor for a ...
1
vote
1answer
424 views

find closest lat long to a input lat long Sql server 2008

Hi I have a point cloud in my database (Sql server 2008 spatial). That is about 6 million records. There are 3 columns: id, value , geom. What is the most optimized way of getting the 'value' at ...
0
votes
1answer
153 views

Closest pair of points Planar case

I am looking at the wikipedia entry for how to solve this. It lists five steps 1.Sort points along the x-coordinate 2.Split the set of points into two equal-sized subsets by a vertical line x = xmid ...