What is difference between features and keypoints in computer vision?
Asked Answered
C

1

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.

Capitate answered 8/2, 2017 at 15:1 Comment(2)
See also hereLiner
Possible duplicate of What are keypoints in image processing?Liner
D
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.

Demb answered 8/2, 2017 at 15:17 Comment(1)
@Demb an example would help make things more clear!Nephogram

© 2022 - 2024 — McMap. All rights reserved.