1 | initial version |
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)