开发者

Multidimensional indexing of images

开发者 https://www.devze.com 2023-01-08 04:43 出处:网络
I would like to know if there is a good way for indexing multidimensional objects (i.e. images). More precisely, I have a large collection of images on which I calculate n-dimensional feature vectors.

I would like to know if there is a good way for indexing multidimensional objects (i.e. images). More precisely, I have a large collection of images on which I calculate n-dimensional feature vectors. There is a distance metric (i.e. L2-norm) defined over those feature vectors d(u,v). Given a key (an n-dimensional) k, the index should allow fast retrieva开发者_开发技巧l of feature vectors that are "close" to k (that is, their distance is small).

MATLAB code reference would be great...


For distances r-tree's are often used. I think it can apply to n-dimensions, but I'm not sure if it will work with custom distance or dissimilarity functions. I think it's implemented in this library. It might help to convert your data to n-dimensional coordinates.

0

精彩评论

暂无评论...
验证码 换一张
取 消