2017-04-13 17 views
1

나는 현재 플란넬과 ORB를 구현하기 위해 노력하고 정의되지 않은, 내가 설명서를 읽고 그리고 플란넬과 ORB를 사용할 때 사용 할 필요가 있다고 말했다 :OpenCV의 3.2 나가서 설명하자면 NameError : 글로벌 이름이 'FLANN_INDEX_LSH'

index_params= dict(algorithm = FLANN_INDEX_LSH, 
        table_number = 6, # 12 
        key_size = 12,  # 20 
        multi_probe_level = 1) #2 
나는 그것이 FLANN_INDEX_LSH이 정의되지 않은 말했다 프로그램을 실행할 때

그리고 내 코드

def useFLANN(img1, img2, kp1, kp2, des1, des2, setDraw, type): 
# Fast Library for Approximate Nearest Neighbors 
MIN_MATCH_COUNT = 10 
FLANN_INDEX_KDTREE = 0 

if type == True: 
    # Detect with ORB 
    index_params= dict(algorithm = FLANN_INDEX_LSH, 
        table_number = 6, # 12 
        key_size = 12,  # 20 
        multi_probe_level = 1) #2 
else: 
    # Detect with Others such as SURF, SIFT 
    index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5) 

# It specifies the number of times the trees in the index should be recursively traversed. Higher values gives better precision, but also takes more time 
search_params = dict(checks = 60) 

flann = cv2.FlannBasedMatcher(index_params, search_params) 
matches = flann.knnMatch(des1, des2, k=2) 

# store all the good matches as per Lowe's ratio test. 
good = [] 
for m,n in matches: 
    if m.distance < 0.7*n.distance: 
     good.append(m) 

if len(good)>MIN_MATCH_COUNT: 
    src_pts = np.float32([ kp1[m.queryIdx].pt for m in good ]).reshape(-1,1,2) 
    dst_pts = np.float32([ kp2[m.trainIdx].pt for m in good ]).reshape(-1,1,2) 

    M, mask = cv2.findHomography(src_pts, dst_pts, cv2.RANSAC,5.0) 
    matchesMask = mask.ravel().tolist() 

    h,w = img1.shape 
    pts = np.float32([ [0,0],[0,h-1],[w-1,h-1],[w-1,0] ]).reshape(-1,1,2) 
    dst = cv2.perspectiveTransform(pts,M) 

    img2 = cv2.polylines(img2,[np.int32(dst)],True,255,3, cv2.LINE_AA) 

else: 
    print "Not enough matches are found - %d/%d" % (len(good),MIN_MATCH_COUNT) 
    matchesMask = None 

totalDistance = 0 
for g in good: 
    totalDistance += g.distance 

if setDraw == True: 
    draw_params = dict(matchColor = (0,255,0), # draw matches in green color 
         singlePointColor = None, 
         matchesMask = matchesMask, # draw only inliers 
         flags = 2) 

    img3 = cv2.drawMatches(img1,kp1,img2,kp2,good,None,**draw_params) 
    plt.imshow(img3, 'gray'),plt.show() 

return totalDistance 

문제입니다. OpenCV 3.2에서 FLANN_INDEX_LSH 버그가 무엇입니까?

참고 : 나는 플란넬 FLANN_INDEX_KDTREE와 SIFT/SURF를 사용하면 완벽하게

답변

2

아니고 버그를 작동합니다. FLANN_INDEX_LSH은 OpenCV의 python API에서 정의되지 않았습니다. 당신은

FLANN_INDEX_LSH = 6

를 다음과 같이 정의하고 코드를 계속할 수 있습니다. 전체 목록은 official docs

을 참조하십시오.