SurfFeatureDetector
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,454 times
Last updated: Jun 18 '13