Java: Configure SIFT detector

asked 2016-11-26 14:46:41 -0600

argonisius gravatar image

updated 2016-11-27 11:01:28 -0600

Hi, I'm using SIFT feature detector in Java.

FeatureDetector detector = FeatureDetector.create(FeatureDetector.SIFT);

I would like to configure some parameters (tresholds, such as here) to get less keypoints.

How can I do that?

edit retag flag offensive close merge delete

Comments

I looked up similar Questions from other Descriptors, and It seems, that you have to do a pretty complicated Work-around for that. Why don't you try to use it in C++ via JNI? There it is quite easy to configure it.

Vintez gravatar imageVintez ( 2016-11-28 07:52:35 -0600 )edit