nearest-neighbor Questions
5
Solved
I have a database with 500,000 points in a 100 dimensional space, and I want to find the closest 2 points. How do I do it?
Update: Space is Euclidean, Sorry. And thanks for all the answers. BTW th...
Ingrate asked 10/10, 2010 at 5:6
3
Solved
I've been tasked to find N clusters containing the most points for a certain data set given that the clusters are bounded by a certain size. Currently, I am attempting to do this by plugging in my ...
Discophile asked 8/10, 2010 at 14:40
2
Solved
I have a database full of two-dimensional data - points on a map. Each record has a field of the geometry type. What I need to be able to do is pass a point to a stored procedure which returns the ...
Isocyanide asked 26/3, 2010 at 11:43
2
Solved
I have to implement k nearest neighbors search for 10 dimensional data in kd-tree.
But problem is that my algorithm is very fast for k=1, but as much as 2000x slower for k>1 (k=2,5,10,20,100)
Is ...
Rhett asked 9/1, 2010 at 17:24
2
Solved
Thanks to those who've answered my previous questions and gotten me this far.
I have a table of about 25,000 vectors, each with 48 dimensions, with values ranging from 0-255.
I am attempting to dev...
Sik asked 16/7, 2010 at 16:51
1
Solved
I am trying to create a system which would be able to find users with similar favourite movies/books/interests/etc., much like neighbours on last.fm. Users sharing the most mutual interests would h...
Vedavedalia asked 11/7, 2010 at 19:43
12
Solved
A point in 3-d is defined by (x,y,z). Distance d between any two points (X,Y,Z) and (x,y,z) is d= Sqrt[(X-x)^2 + (Y-y)^2 + (Z-z)^2].
Now there are a million entries in a file, each entry is some po...
Evenfall asked 21/3, 2010 at 5:47
4
Solved
I am trying to write my own function for scaling up an input image by using the Nearest-neighbor interpolation algorithm. The bad part is I am able to see how it works but cannot find the algorithm...
Antonietta asked 11/10, 2009 at 14:53
1
Solved
I have a database, and I want to find out the previous and next record ordered by ID, using a single query. I tried to do a union but that does not work. :(
SELECT * FROM table WHERE `id` > 15...
Hinkel asked 5/7, 2009 at 16:36
© 2022 - 2024 — McMap. All rights reserved.