How to search the image for an object with SIFT and OpenCV?

前端 未结 3 1088
眼角桃花
眼角桃花 2021-01-27 22:32

i am working on a simple playing card detecting programme. For now i have a working Sift Algorithmus from here. And i have created some bounding boxes around the cards. Then i u

3条回答
  •  抹茶落季
    2021-01-27 23:02

    SIFT is just the beginning.

    SIFT is a routine to obtain interest points on object. You have to use Bag of Words approach. Cluster the SIFT features you collected and represent each feature in terms of your cluster means. Represent each card as histogram of these cluster means (aka. bag of words).

提交回复
热议问题