First time here? Check out the FAQ!

Ask Your Question
0

How can i get the brisk's orientation?

asked Oct 19 '16

MQ gravatar image

Hello,

I'm trying to extract the orientation and scale from brisk's descriptors, but i don't know exactly how. I've already get the keypoints and the descriptors from my image.

Can anyone help me?

Thanks in advance,

Preview: (hide)

1 answer

Sort by » oldest newest most voted
3

answered Oct 20 '16

Eduardo gravatar image

updated Oct 20 '16

Orientation and scale are stored in the Keypoint, they can be accessed by the angle and scale attritbute.

Preview: (hide)

Comments

Thanks! Could you give me an example about how i do this in c++? I've already tried using "keypoint.angle" but it doesn't work. EDIT I mean, I just add the "types.hpp" in my code, but I still can't use it on my keypoints that I've extracted before with the BRISK constructor.

MQ gravatar imageMQ (Oct 20 '16)edit
1

You need to add the whole OpenCV library, not types.hpp alone ... when creating a vector<Keyoints> collection; and then filling it with data by calculating keypoints, you can loop over them and access the angles using collection[i].angle which I just confirmed.

StevenPuttemans gravatar imageStevenPuttemans (Oct 20 '16)edit
1

Ok, thanks!

I was used points2d as keyponts... The problem is solved now, thanks!

MQ gravatar imageMQ (Oct 20 '16)edit

Question Tools

1 follower

Stats

Asked: Oct 19 '16

Seen: 464 times

Last updated: Oct 20 '16