Book Image

OpenCV Essentials

Book Image

OpenCV Essentials

Overview of this book

Table of Contents (15 chapters)
OpenCV Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Interest points


Local features, also called interest points, are characterized by sudden changes of intensity in the region. These local features are usually classified in edges, corners, and blobs. OpenCV encapsulates interesting point information in the KeyPoint class, which contains the following data:

  • The coordinates of the interest point (the Point2f type)

  • Diameter of the meaningful keypoint neighborhood

  • Orientation of the keypoint

  • Strength of the keypoint, which depends on the keypoint detector that is selected

  • Pyramid layer (octave) from which the keypoint has been extracted; octaves are used in some descriptors such as SIFT, SURF, FREAK, or BRISK

  • Object ID used to perform clustering