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.