OpenCV ORB detector finds very few keypoints

后端 未结 2 1421
醉梦人生
醉梦人生 2021-01-04 06:04

I\'m trying to use the ORB keypoint detector and it seems to be returning much fewer points than the SIFT detector and the FAST detector.

This image shows the keypo

2条回答
  •  时光说笑
    2021-01-04 06:30

    Increasing nfeatures increases the number of detected corners. The type of keypoint extractor seems irrelevant. I'm not sure how this parameter is passed to FAST or Harris but it seems to work.

    orb = cv2.ORB_create(scoreType=cv2.ORB_FAST_SCORE)
    

    orb = cv2.ORB_create(nfeatures=100000, scoreType=cv2.ORB_FAST_SCORE)
    

提交回复
热议问题