I want to know more about KeyPoints, so can anyone told me what are
In OpenCV docs was mentioned that angle is computed orientation of the
If someone came to this question wondering why does keypoint.octave
have such a weird value (e.g. 16253184), it is because it actually carries the information on:
octave
in the least significant byte of the keypoint.octave
fieldlayer
of that octave in the second least significant byte of the keypoint.octave
fieldkeypoint.octave
gets unpacked into the variables octave
, layer
, and scale
(scale
is just 1/2^octave
) with the method unpackOctave
(see OpenCV implementation).
To get a visual understanding of variables octave
and layer
, this image might help: