BFMatcher.empty constructor

BFMatcher.empty()

returns a new BFMatcher algorithm

For further details, please see: https://docs.opencv.org/4.x/d3/da1/classcv_1_1BFMatcher.html

Implementation

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