First time here? Check out the FAQ!

Ask Your Question
0

SurfFeatureDetector

asked Jun 17 '13

ToBeSafe gravatar image

Hi Can we use SurfFeatureDetector in java or it has no equivalent in java ?

Preview: (hide)

2 answers

Sort by » oldest newest most voted
1

answered Jun 18 '13

berak gravatar image

yes)

Preview: (hide)

Comments

If you mean we can use SurfFeatureDetector in java:May you lead me to any reference about how to use SurfFeatureDetector in java ?

ToBeSafe gravatar imageToBeSafe (Jun 18 '13)edit
0

answered Jun 19 '13

MysticBE gravatar image

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)

Preview: (hide)

Comments

In C++ we provide threshold value in the surf object constructor so how could we set the threshold value in that code? Is there any documentation for this subject ?

ToBeSafe gravatar imageToBeSafe (Jun 19 '13)edit

SURF is not included in java Package from opencv 2.4.2 version onwards

Mehul Thakkar2 gravatar imageMehul Thakkar2 (Jan 27 '14)edit

Question Tools

Stats

Asked: Jun 17 '13

Seen: 2,456 times

Last updated: Jun 18 '13