Ask Your Question

Jaka's profile - activity

2019-10-29 15:31:03 -0600 received badge  Notable Question (source)
2018-06-07 15:19:32 -0600 received badge  Popular Question (source)
2015-05-13 02:37:50 -0600 commented answer Problem extracting descriptors of FAST opencv3

Hi berak thank you for your answer, I've tried and it works. Now I'll search about more information about DescriptorExtractor :)

2015-05-12 11:54:16 -0600 asked a question Problem extracting descriptors of FAST opencv3

Hi everybody, I'm started to use openCV(3.0.0-dev) and now I'm trying different way to extract features from images (Fast, GoodFeaturesToTrack, Mser, Star, Sift, Surf). I started with SIFT and SURF and my code works good but now i'm tryng with FAST and i can't understand how extract descriptors of keypoints!

For SIFT, for example, I used this code

    detector = cv2.xfeatures2d.SIFT_create()
    kp, des = detector.detectAndCompute(img ,None)

In des i have my descriptors and it's ok, but when I've tried with FAST

detector = cv2.FastFeatureDetector_create()
kp, des = detector.detectAndCompute(img ,None)

I've obtained following error -> "OpenCV Error: The function/feature is not implemented () in detectAndCompute"

I've noted that there is the method dectect() and I can extract keypoints but what about descriptors? Why it works for SIFT/SURF and not for FAST? How can I obtain the descriptors? Thank you for answer.