June 2016
Beginner to intermediate
304 pages
6h 24m
English
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, which is available at https://www.cs.ubc.ca/~lowe/papers/ijcv04.pdf. 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. Let's take a look at how to detect these feature points.
import sys import cv2 import numpy as np
table.jpg:# Load input image -- 'table.jpg' input_file = sys.argv[1] ...