May 2020
Beginner to intermediate
430 pages
10h 39m
English
Once we know how to detect edges, the next task is to detect features. Many edges combine to form features. Feature extraction is the process of recognizing visual patterns in an image and extracting any discriminating local features that match with the image of an unknown object. Before performing feature extraction, it is important to understand the image histogram. An image histogram is the distribution of the color intensity of the image.
An image feature matches with the test image if the histograms are similar. The following is the Python code used to create an image histogram of the car:
import numpy as npimport cv2import matplotlib.pyplot as plt%matplotlib inlineimport matplotlib.pyplot as pltfrom ...