OpenCV - Object matching using SURF descriptors and BruteForceMatcher

前端 未结 3 790
旧巷少年郎
旧巷少年郎 2020-12-12 22:56

I have a question about objects matching with OpenCV. I\'m useing SURF algorithm implemented in opencv 2.3 to first detect features on each image, and then extracting the de

3条回答
  •  醉酒成梦
    2020-12-12 23:38

    The problem was in using Brute Force Matcher only, I found methods to obtain a set of good matches between two views at "OpenCV 2 Computer Vision Application Programming Cookbook"

    Ch9: Matching images using random sample consensus

    They are using K-Nearest Neighbor and RANSAC

    And thanks

提交回复
热议问题