Dense Features extraction in Opencv
Is there anyway to extract dense sift/surf features with opencv.
With dense I mean, that in a regular grid of some size, compute features at each vertex.
Is there anyway to extract dense sift/surf features with opencv.
With dense I mean, that in a regular grid of some size, compute features at each vertex.
as long as you are using the 2.4 branch, you can use the GridadaptedFeatureDetector
or create a grid version of any keypoint detector like this:
Ptr<FeatureDetector> pfd = FeatureDetector::create("GridORB");
Asked: 2014-10-20 06:12:06 -0600
Seen: 517 times
Last updated: Oct 20 '14
Keypoint matcher matches all keypoints from train to query irrespective of the scene?
How to use PCA SIFT in opencv ?
Sample image as training image
Displaying meta-data of matched image to user after successful image matching via surf
Impossible to create SIFT detector and extractor
How to set minHessian value in android/java