1 | initial version |
assuming, you're using opencv3, - there have been some changes in the features2d api.
instead of:
cv::OrbFeatureDetector detect;
you'll have to use:
Ptr<ORB> detect = ORB::create();
detect->doSomething();
please also see tutorials