training SIFT features in OpenCV

后端 未结 2 460
遥遥无期
遥遥无期 2021-01-01 01:30

I have created a small SIFT application that grabs the keypoints and saves it out to a text file. I am using this to grab information from a logo (say AT&T) and use that

相关标签:
2条回答
  • 2021-01-01 01:41

    A simple starting point would be to collect SIFT/SURF descriptors of several AT&T logos, and use FLANN on them. Then, take a test image, compute the descriptors and do a range search and determine the nearest-neighbor distance, etc. and try to figure out a metric of "closeness".

    0 讨论(0)
  • 2021-01-01 01:53

    You can use PCA to reduce number of dimensions and then you can train some kind of classifier like SVM on set of vector features extracted from logos. also you can use BoW (bag of words\features). also you can google on "logo recognition" a lot of material availible.

    0 讨论(0)
提交回复
热议问题