cv.detail.BestOf2NearestRangeMatcher_create(), used in stitching_detailed.py seems missing from OpenCv4.2.
Line 244++:
if matcher_type == "affine":
matcher = cv.detail_AffineBestOf2NearestMatcher(False, try_cuda, match_conf)
elif range_width == -1:
matcher = cv.detail.BestOf2NearestMatcher_create(try_cuda, match_conf)
else:
matcher = cv.detail.BestOf2NearestRangeMatcher_create(range_width, try_cuda, match_conf)
return matcher
Will this be added into a future version? Is there a current work-around?
Thanks?