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<cvg.BFMatcher>();
cvRun(() => cffi.BFMatcher_Create(p));
return BFMatcher._(p);
}