I´m quite new to OpenCV
. I followed this tutorial for searching an object in a picture and I was able to run the code successfully.
While I was searching, I saw that there are more options for feature matching (e.g Fast
, ORB
or BRISK
). So I decided to try a different descriptor than SURF
.
But I'm having trouble. What do I have to do to create a different descriptor? Can someone help me, maybe with a code example for OpenCV3.2
? :)
This is a link that I have found while searching, but sadly it is not for OpenCV 3.2
.
With OpenCV 3 a consistent feature detection API was introduced.
That is, every feature detector implements a static create() method which returns a cv::Ptr to the respective detector.
Here's a quick example which shows the described behaviour:
Following this sample you're able to use each of OpenCV's detectors, which are in the latest docs:
Default descriptors
Non-free descriptors
Experimental descriptors