Recognizing an image from a list with OpenCV SIFT using the FLANN matching

前端 未结 2 879
耶瑟儿~
耶瑟儿~ 2021-02-01 10:46

The point of the application is to recognize an image from an already set list of images. The list of images have had their SIFT descriptors extracted and saved in files. Nothin

2条回答
  •  别跟我提以往
    2021-02-01 11:15

    You can try to test if when matching, the lines between the source image and the target image are relatively parallel. If it's not a correct match, then you'd have a lot of noise and the lines won't be parallel.

    See the attached image which shows a correct match (using SURF and BF) - all the lines are mostly parallel (though I should point out that this is an easy example).

    enter image description here

提交回复
热议问题