kdtree Questions

3

Solved

There are 2 images A and B. I extract the keypoints (a[i] and b[i]) from them. I wonder how can I determine the matching between a[i] and b[j], efficiently? The obvious method comes to me is to c...
Decurion asked 10/10, 2012 at 8:10

2

Solved

I want to implement some king of spatial indexing data structure for my MKAnnotations. Currently it's horribly slow when I try to filter them based on distance criteria ( 3-4k of locations, curren...
Gag asked 1/10, 2012 at 18:43

3

Solved

I looked at the definition of KD-tree and R-tree. It seems to me that they are almost the same. What's the difference between a KD-tree and an R-tree?
Placement asked 1/12, 2010 at 16:8

0

I am trying to build a Distributed KD tree using map-reduce. Description of Distributed KD tree can be found out here Dkd-Tree I have a feature vector of images having dimension 20. I have to buil...
Centaurus asked 13/6, 2012 at 7:1

1

Solved

I am trying to build the KD tree(independent) for image features. I have extracted the image features,the feature contains suppose 1000 float values. Using map-reduce to distribute the images amo...
Acetometer asked 11/6, 2012 at 16:38

2

Solved

I'm going to write a templatized implementation of a KDTree, which for now should only work as Quadtree or Octree for a BarnesHut implementation. The crucial point here is the design, I would like...
Shipp asked 15/5, 2012 at 11:1

5

The other day, I was reading about kd-trees. I was looking for a concrete and simple situation where such a data structure could be useful. Does anybody have such an example?
Levorotatory asked 28/2, 2012 at 19:30

4

Solved

I'm writing an app that looks up points in two-dimensional space using a k-d tree. It would be nice, during development, to be able to "see" the nearest-neighbor zones surrounding each point. In t...

4

Solved

I've got a MongoDB with about 1 million documents in it. These documents all have a string that represents a 256 bit bin of 1s and 0s, like: 0110101010101010110101010101 Ideally, I'd like to quer...
Ambiguous asked 4/1, 2012 at 21:6

2

I want to compare the SURF descriptors in one image (A), with the descriptors in several other images (B,C,D,..) to find the most similar image to A. The descriptors have 64 dimensions. Using C# a...
Scyphozoan asked 30/11, 2011 at 11:5

2

I am trying to make some Haskell types which are parametrized not by types but by elements of a type, specifically, integers. For instance, a (linear-algebra) vector in R^2 and a vector in R^3 are ...

1

Solved

I am trying to utilize k-nearest neighbors for the string similarity problem i.e. given a string and a knowledge base, I want to output k strings that are similar to my given string. Are there any ...
Blinni asked 17/4, 2011 at 22:23

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

1

Solved

after one day of trying to figure out how to implement a kd-tree in OpenGL/GLSL i am pretty frustrated ... I declare my KD-Nodes like this in GLSL: layout(std140) uniform node{ ivec4 splitPoint;...
Debbidebbie asked 29/7, 2010 at 15:29

© 2022 - 2024 — McMap. All rights reserved.