Difference between feature detection,extraction,descriptor,selection and matching
Show older comments
computer vision,object detection
Answers (1)
Dima Lisin
on 6 Jan 2015
2 votes
Feature detection, also called interest point detection or keypoint detection is finding points in the image which are somehow "special". Typically that means that these points correspond to some elements of the scene that can be reliably located in different views of that scene. Examples are corners and "blobs" (centers of roughly circular regions).
Feature extraction means computing a descriptor from the pixels around each interest point. The simplest descriptor is just the raw pixel values in a small patch around the interest point. More sophisticated descriptors include SURF, HOG, and FREAK.
Matching descriptors is a way of finding point correspondences between two images.
Categories
Find more on Image Category Classification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!