Extract point descriptors from small images using OpenCV
问题 I am trying to extract different point descriptors (SIFT, SURF, ORB, BRIEF,...) to build Bag of Visual words. The problem seems to be that I am using very small images : 12x60px. Using a dense extractor I am able to get some keypoints, but then when extracting the descriptor no data is extracted. Here is the code : vector<KeyPoint> points; Mat descriptor; // descriptor of the current image Ptr<DescriptorExtractor> extractor = DescriptorExtractor::create("BRIEF"); Ptr<FeatureDetector> detector