MatOfDMatch how can it be used?
I am using android to compare some images, and I get the keypoints detecting done, the descriptionextraction, and then the matching of the two descriptors. I get the matched MatOfDMatch, but I don't quite get how I evaluate it. Any pointers?
Imgproc.cvtColor(mRgba, mGray, Imgproc.COLOR_RGBA2GRAY); detector.detect(mGray, keypoints); descriptorExtractor.compute(mGray, keypoints, descriptors);
MatOfDMatch temp = new MatOfDMatch(); matcher.match(descriptors,trained, temp);
And then? Peter