An iPhone library for shape recognition via the camera

后端 未结 3 1873
礼貌的吻别
礼貌的吻别 2021-01-03 11:22

I hope this falls within the \"programming question\" category. Im all lightheaded from Googling (and reading every post in here on the subject) on the subject \"Computer Vi

3条回答
  •  离开以前
    2021-01-03 12:13

    Have a look at at OpenCV's SURF feature extraction (they also have a demo which uses it to detect objects). Surf features are salient image features which are invariant to rotation and scale. Many algorithms detect objects by extracting such features from an image, and then use simple "bag of words" classification (comparing the set of extracted image features to the features of your "shapes". Even without referring to their spacial alignment you can have good detection rates if you only have 6 shapes).

提交回复
热议问题