21

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.

nbro
  • 15,395
  • 32
  • 113
  • 196
matogolf
  • 221
  • 2
  • 4
  • 1
    See also [here](http://dsp.stackexchange.com/a/10424) – Miki Feb 08 '17 at 15:26
  • 1
    Possible 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 Answers1

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.

nbro
  • 15,395
  • 32
  • 113
  • 196
NAmorim
  • 706
  • 6
  • 12