December 2018
Intermediate to advanced
182 pages
4h 21m
English
In this project, we are going to detect and read license plates in photos of cars. We will be performing multiple steps, from locating the license plate to displaying the characters in the located license plate.
Let's refer to the code in Jupyter Notebook needed to analyze our sample images:
%pylab notebookfigure()imshow(imread('tests/p1.jpg'))
We get the following photo when we run the code:

We have a photo of a car, with its license plate clearly visible and readable. The challenge is to locate the license plate, isolate it from the rest of the photo, and extract the characters from it.
We can now take a closer ...
Read now
Unlock full access