正如我在标题中已经提到的,这两个导入在opencv 4.1.0中无法解决。
import org.opencv.features2d.DescriptorExtractor;
import org.opencv.features2d.FeatureDetector;
此代码:
FeatureDetector detector = FeatureDetector.create(FeatureDetector.ORB);
DescriptorExtractor extractor = DescriptorExtractor.create(DescriptorExtractor.ORB);
已弃用它们:https://iopencv.com/docs/cpp-python/3.4.1/javadoc/index.html?deprecated-list.html
但是我现在没有应该使用的文档。
答案 0 :(得分:0)
如果仍然有人被此错误困扰。问题是opencv4.1.0(我认为以上)没有这些类。
降级到opencv3.4.9为我修复了它!