Scale and orientation of SURF keypoints

asked 2017-10-16 16:15:46 -0600

Hi,

I extracted the SURF keypoints and descriptors of an image using Python with :

img=cv2.imread("test_image.jpg")
surf=SURF(400)
kp,des=surf.detectAndCompute(img,None)

I want to get the scale and the orientation of each keypoint of the image. What should I do ?

edit retag flag offensive close merge delete