match method

VecDMatch match(
  1. Mat query,
  2. Mat train
)

Match Finds the best match for each descriptor from a query set.

For further details, please see: https://docs.opencv.org/4.x/db/d39/classcv_1_1DescriptorMatcher.html#a0f046f47b68ec7074391e1e85c750cba

Implementation

VecDMatch match(Mat query, Mat train) {
  final ret = calloc<cfeatures2d.VecDMatch>();
  cvRun(() => cfeatures2d.BFMatcher_Match(ptr.ref, query.ref, train.ref, ret));
  return VecDMatch.fromPointer(ret);
}