Get the SIFT descriptor for specified point using OpenCV
问题 I want get the SIFT feature for specified points. These points is gotten by hand not by KeyPoint Detector. My question is: I only know the position of the points but have no idea about the size and angle value. How should I set this value? Here is my code: int main() { Mat img_object = imread("img/test.jpg", 0); SiftDescriptorExtractor extractor; Mat descriptors; std::vector<KeyPoint> keypoints; // set keypoint position and size: should I set // size parameter to 32 for 32x32 patch? KeyPoint