cv.detail.BestOf2NearestRangeMatcher_create() missing
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?
>>> help(cv2.detail)
gives:which error do you get, exactly ?
AttributeError: module 'cv2.detail' has no attribute 'BestOf2NearestRangeMatcher_create'
Im refering to BestOf2NearestRangeMatcher_create
ah, ok , i misread it.
I don't understand. test code is here
Merely OpenCV 3 not OpenCV 4