currently i am working on opevcv with python but when i use
kp1 = orb.detect(img1,None)
kp2 = orb.detect(img2,None)
kp1, des1 = orb.compute(img1, kp1)
kp2, des2 = orb.compute(img2, kp2)
matches = matcher.match(des1, des2)
i get the error that matcher is not defined
matches = matcher.match(des1, des2)
NameError: name 'matcher' is not defined
, i am using opencv 3.0.0 with python 2.7, can anyone tell me why i am getting this error ?? can we use matcher or not with python ??