Scale invariant feature transform (SIFT) is one of the most popular features in the field of computer vision. David Lowe first proposed this in his seminal paper. It has since become one of the most effective features to use for image recognition and content analysis. It is robust against scale, orientation, intensity, and so on. This forms the basis of our object recognition system.
Detecting SIFT feature points
Getting ready
In this recipe, we will learn how to detect SIFT feature points.
How to do it...
Let's see how we can detect SIFT feature points:
- Create...