Java OpenCV: Specified function detector type not supported

I downloaded OpenCV 3.0.0-rc1

. I am experimenting with it in Java.

I am trying to use SURF feature detector

:

FeatureDetector featureDetector = FeatureDetector.create(FeatureDetector.SURF);

      

But it reports the error below:

enter image description here

Why? Is the OpenCV Java wrapper not complete?

+3


source to share


1 answer


It seems like the Java wrapper for OpenCV 3.0.0-rc1

really is incomplete. I turned to use the detector 2.4.10

, SURF

and many more are now available.



Just as @berak commented, additional modules need to be added to the main repo.

+3


source







All Articles