In opencv 2, I used to do a dense feature detection with :-
detector = cv::Ptr<cv::featuredetector>(new cv::DenseFeatureDetector);
As far as I can fathom, this is gone from Opencv3, and can't find anything on the documentation. Is there a way to do it in Opencv3 or would I have to manually copy the function from OpenCV2? A quick code search on github for "dense features" only gives sparse results
Also, OCV3 does not have the
cv::FeatureDetector::create("bla")
function either, right?
I am trying to port my code to ocv3, and this is creating some issues