I am studying something about some possibilities of OpenCV object detection and this is confusing to me. I just don't see the difference between these two.
Asked
Active
Viewed 6,003 times
21
-
1See also [here](http://dsp.stackexchange.com/a/10424) – Miki Feb 08 '17 at 15:26
-
1Possible duplicate of [What are keypoints in image processing?](http://stackoverflow.com/questions/29133085/what-are-keypoints-in-image-processing) – Miki Feb 08 '17 at 15:28
1 Answers
26
Image features are small patches that are useful to compute similarities between images. An image feature is usually composed of a feature keypoint and a feature descriptor.
The keypoint usually contains the patch 2D position and other stuff if available such as scale and orientation of the image feature.
The descriptor contains the visual description of the patch and is used to compare the similarity between image features.