Original works only, first published, no reprints.
1
Image Acquisition
2
Preprocessing
3
License Plate Localization
4
License Plate Correction
5
Character Segmentation
After extracting the license plate area, it is necessary to segment the license plate area character by character to determine how many characters are present in the license plate, the positional relationships between characters, and other information, ensuring correct license plate type matching and character recognition.
The main idea of this process is to utilize the binarization results or edge extraction results of the license plate, leveraging structural features of characters, similarities between characters, and spacing between characters to extract individual characters separately, including handling special cases of connected and broken characters; on the other hand, characters with similar width and height are grouped together to remove the license plate border and some minor noise. Commonly used algorithms include: connected component analysis, projection analysis, character clustering, and template matching.
6
Character Recognition
7
License Plate Result Output