Ask Your Question

semicolonwarrior's profile - activity

2020-10-20 04:29:09 -0600 received badge  Popular Question (source)
2015-05-06 03:36:39 -0600 commented question Dense Features in Opencv 3

That way, I can build a lot of complex things with simple building blocks - that's not the point. Was there specific reason to remove it?

2015-05-05 10:49:25 -0600 received badge  Student (source)
2015-05-05 10:48:35 -0600 asked a question Dense Features in Opencv 3

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