I'm going compare images with SURF detector in opencv. for this work,I need size and Orientation of keypoints that must be compare them. for example, I have to extract keypoints matching of second image larger than keypoints matching of first image. (keypoint 1.size > keypoint 2.size).
question: how to extract size of keypoints matching in opencv?
I'm not sure if I quite understand your question.
What I understood was that:
First u want at least 2 images:
Then detect keypoints in the two images using SURF:
After that compute the descriptors for detected keypoints:
Then match the descriptors of keypoints using for example BruteForce with L2 norm:
After these steps matched keypoints were stored in the vector 'matches'
You can get the index of matched keypoints as follows:
Read this for further information: http://docs.opencv.org/modules/features2d/doc/common_interfaces_of_descriptor_matchers.html
Finally, to know the size of the matched keypoints u can do the following:
Further info: http://docs.opencv.org/modules/features2d/doc/common_interfaces_of_feature_detectors.html
And that's it! Hope this helps