BFMatcher.create constructor
Brute-force matcher create method.
https://docs.opencv.org/4.x/d3/da1/classcv_1_1BFMatcher.html#a02ef4d594b33d091767cbfe442aefb8a
Implementation
factory BFMatcher.create({int type = NORM_L2, bool crossCheck = false}) {
final p = calloc<cvg.BFMatcher>();
cvRun(() => cfeatures2d.cv_BFMatcher_create_1(type, crossCheck, p));
return BFMatcher._(p);
}