私はアンドロイドで、次のOpenCVのコードを実行している:OpenCVの3.2にDescriptorMatcherを作成できません - Androidの
FeatureDetector detector = FeatureDetector.create(FeatureDetector.ORB);
DescriptorExtractor descriptor = DescriptorExtractor.create(DescriptorExtractor.ORB);
DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMING);
それは私が次の例外を取得していますOpenCVの3.2でのOpenCV 2.4.1 で正常に動作します:
java.lang.UnsatisfiedLinkError: No implementation found for long org.opencv.features2d.DescriptorMatcher.create_1(int) (tried Java_org_opencv_features2d_DescriptorMatcher_create_11 and Java_org_opencv_features2d_DescriptorMatcher_create_11__I)
at org.opencv.features2d.DescriptorMatcher.create_1(Native Method)
at org.opencv.features2d.DescriptorMatcher.create(DescriptorMatcher.java:76)
2種類のAndroid搭載端末で確認しました。何か間違っているのですか、これは新しいopenCVバージョンのバグですか?
うーん...さらに悪いことに、私はまだ3.1.0バージョンで同じ問題を抱えています – Tima
をしても – Tima