Ask Your Question

wmlong's profile - activity

2016-07-20 14:23:16 -0600 received badge  Popular Question (source)
2016-01-22 04:39:01 -0600 received badge  Nice Question (source)
2013-02-11 07:50:01 -0600 received badge  Student (source)
2012-08-16 22:21:39 -0600 asked a question How to control Dense SIFT
Ptr<FeatureDetector> detector = FeatureDetector::create("Dense");

I want to control how to detect features, such as step. How can I do it before calling detect instructions.

It's best to use factory method, because I want to change different feature detector conveniently.

detector->detect(image, keypoints);

Thanks.