SurfFeatureDetector
Hi Can we use SurfFeatureDetector in java or it has no equivalent in java ?
Hi Can we use SurfFeatureDetector in java or it has no equivalent in java ?
Yes it can be done in Java with the OpenCV Library. Try this:
MatOfKeyPoint keypoints = new MatOfKeyPoint();
FeatureDetector surf = FeatureDetector.create(FeatureDetector.SURF);
surf.detect(inputMat, keypoints);
I should note that SURF is actually very slow (just saying)
SURF is not included in java Package from opencv 2.4.2 version onwards
Asked: 2013-06-16 22:42:18 -0600
Seen: 2,440 times
Last updated: Jun 18 '13
What is the best object detection scale?
Getting error in mat.hpp while training data
Displaying meta-data of matched image to user after successful image matching via surf
Train KNN classifier with several samples OpenCV Python
SurfFeatureDetector cannot use data of CV_16S ?
How to create SurfFeatureDetector using FeatureDetector::create?
opencv 3.0 what is the correct way to use surffeaturedetector?
using surffeaturedetector, findHomography() to find a match [closed]