Java: Configure SIFT detector
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?
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.