ORB 特徴検出器と抽出器を使用して、グレースケール画像のリストから特徴を取得しています。問題は、同じ画像を複数回検出/抽出しようとすると、同じ画像から異なる機能が得られることです。そのため、後で検出に使用することはできません。
コード:
bmp=BitmapFactory.decodeResource(getResources(),R.drawable.t1);
Utils.bitmapToMat(bmp, mat);
FeatureDetector detector = FeatureDetector.create(FeatureDetector.ORB);
detector.detect(mat, keypoints);
DescriptorExtractor extractor = DescriptorExtractor.create(DescriptorExtractor.ORB);
extractor.compute(mat, keypoints, features);
多分誰かがそれについての洞察を持っていますか?