web-dev-qa-db-fra.com

AttributeError: l'objet 'module' n'a pas d'attribut 'ORB'

quand j'exécute mon python

import numpy as np
import cv2
import matplotlib.pyplot as plt

img1 = cv2.imread('/home/shar/home.jpg',0)          # queryImage
img2 = cv2.imread('/home/shar/home2.jpg',0) # trainImage

# Initiate SIFT detector
orb = cv2.ORB()

# find the keypoints and descriptors with SIFT
kp1, des1 = orb.detectAndCompute(img1,None)
kp2, des2 = orb.detectAndCompute(img2,None)
# create BFMatcher object
bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)

# Match descriptors.
matches = bf.match(des1,des2)

# Sort them in the order of their distance.
matches = sorted(matches, key = lambda x:x.distance)

# Draw first 10 matches.
img3 = cv2.drawMatches(img1,kp1,img2,kp2,matches[:10], flags=2)

plt.imshow(img3),plt.show()

Je reçois cette erreur:

AttributeError: 'module' object has no attribute 'ORB' 

J'utilise python3 et opencv3

20
shar

J'ai trouvé ça aussi. J'ai vérifié le contenu réel du module cv2 Et trouvé ORB_create() plutôt que ORB()

Utilisez la ligne

orb = cv2.ORB_create()

au lieu de orb = cv2.ORB() et cela fonctionnera.

Vérifié sur Python 3.4, OpenCV 3 sur Windows, en utilisant l'ensemble de données de test OpenCV box.png Et box_in_scene.png Avec les résultats suivants. Remarque vous devez mettre None pour outImg dans la ligne img3 = cv2.drawMatches(img1,kp1,img2,kp2,matches[:10], flags=2) aussi - voir ma réponse à votre autre question.

box scene output

52
J Richard Snape