BFMatcher.empty constructor

BFMatcher.empty()

returns a new BFMatcher algorithm

For further details, please see: https://docs.opencv.org/master/d3/d61/classcv_1_1KAZE.html

Implementation

factory BFMatcher.empty() {
  final p = calloc<cfeatures2d.BFMatcher>();
  cvRun(() => cfeatures2d.BFMatcher_Create(p));
  return BFMatcher._(p);
}