我想知道如何在 python 中使用 FREAK 特征提取,我阅读了文档,但我需要一些示例。我写了这段代码:
freakExtractor = cv2.xfeatures2d.FREAK_create()
keypoints,descriptors= freakExtractor.compute(image,None)
但描述符是无,为什么?
我使用了 SURF 检测到的关键点而不是 None 参数:
surfDetector = cv2.xfeatures2d.SURF_create()
keypoints = surfDetector.detect(image,None)
freakExtractor = cv2.xfeatures2d.FREAK_create()
keypoints,descriptors= freakExtractor.compute(image,keypoints)
但是输出非常非常大,并且难以处理。我怎样才能解决这个问题?谢谢...