Ask Your Question

Revision history [back]

click to hide/show revision 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