AttributeError: 'cv2.BFMatcher' object has no attribute 'knnmatch'
时间: 2023-11-06 10:09:01 浏览: 136
AttributeError: module 'tensorflow.compat.v1' has no attribute '
当出现"AttributeError: 'cv2.BFMatcher' object has no attribute 'knnmatch'"错误时,意味着cv2.BFMatcher对象没有名为'knnmatch'的属性。这可能是因为你在使用cv2.BFMatcher时错误地引用了'knnmatch'属性。正确的属性名应该是'knnMatch',注意大小写。
阅读全文