Global vector descriptor

不想你离开。 提交于 2019-12-12 02:18:37

问题


Usually, algorithms as SIFT, SURF and many others provdies a set of k keypoints and the associated descriptor in d dimension (for example, in SIFT each descriptor has d=128 dimensions).

So, in order to describe an image we need a matrix kxd (k descriptor vectors, each one in d dimensions). So far so good.

My question is: how can we describe an image through a single vector?

This could be really useful since we could save a lot of space and because certain algorithms (like LSH) requires a vector as input/query.

In some papers (for example this, section 6.5) this approach is described as "global descriptors".

Up to know, I found only this paper but it doesn't seem so accurate (and it's from 2009, not so new).

UPDATE: Other possible solutions (some suggested in the comments):

  • Visual bag of words

  • gist descriptor

来源:https://stackoverflow.com/questions/37455280/global-vector-descriptor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!