我想将 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);
我使用 json 代码来保存来自 Mat 特征的数据以及我从这里获得的代码:http: //answers.opencv.org/question/8873/best-way-to-store-a-mat-object-in- android/?answer=28608#post-id-28608
但是当我显示 json 字符串时,显示如下:
我不了解该数据,如何通过 DescriptorMatcher.BRUTEFORCE_HAMMING 计算?