Extracting Car Plate Numbers from Images Using Azure Cognitive Service Computer Vision

A Guide to Capturing License Plate Numbers from Images using Python Code and Azure Cognitive Service Computer Vision API

Ravi Tiwari
4 min readMar 6, 2023

Introduction

Optical Character Recognition (OCR) technology has been playing an important role in digitizing printed text, making it easy to extract text from scanned documents, photos, and images. In recent years, with the advancement in technology, OCR has been extended to recognize text within images of license plates, which enables automated license plate recognition (ALPR) systems that can capture car plate numbers from images in real-time. In this article, we will explore how to use Azure Cognitive Service Computer Vision to extract license plate numbers from an image.

Setting up Azure Cognitive Service Computer Vision

To use Azure Cognitive Service Computer Vision, we need to create an account on Azure and enable the Computer Vision service. Once the service is enabled, we can access the Computer Vision API using a subscription key and an endpoint. In this code, we set the subscription key and endpoint in the environment variables using os.environ, and then load them using os.environ.

Create computer vision
vehicleNP created
To get keys and endpoint

Capturing Car Plate Number from an Image

Once we have access to the Computer Vision API, we can use it to extract text from an image using OCR. In this code, we load an image from a URL, and then call the read method of the Computer Vision client, which returns an operation location URL. We extract the operation ID from the URL and then use it to call the get_read_result method of the Computer Vision client, which retrieves the OCR results. We wait for the operation to complete, and then loop through the results to find the license plate number.

In this code, we first check if the status of the read_result is succeeded. If it is, we loop through the read_results and lines to check if any line contains a license plate number. To check if a line contains a license plate number, we use the any() function of Python, which returns True if any character in the string satisfies the condition. In this case, we check if the line contains both alphabets and digits. If a license plate number is found, we print it.

Here is the image:

Image of a car in town
fuzzy image

Code

import os
import time
from azure.cognitiveservices.vision.computervision import ComputerVisionClient
from azure.cognitiveservices.vision.computervision.models import OperationStatusCodes
from msrest.authentication import CognitiveServicesCredentials

# Set the environment variables using os.environ
os.environ['COMPUTER_VISION_SUBSCRIPTION_KEY'] = 'xyzzzzzzzzzzzzzzzzzzzzzzzzzz'
os.environ['COMPUTER_VISION_ENDPOINT'] = 'https://xyzzz.cognitiveservices.azure.com/'

# Read the environment variables using os.environ
subscription_key = os.environ['COMPUTER_VISION_SUBSCRIPTION_KEY']
endpoint = os.environ['COMPUTER_VISION_ENDPOINT']

# subscription_key = '96a5175a532f4c7e876c576e00cbc3fe'
# endpoint = 'https://vehiclenp.cognitiveservices.azure.com/'
credentials = CognitiveServicesCredentials(subscription_key)
client = ComputerVisionClient(endpoint, credentials)
computervision_client = ComputerVisionClient(endpoint, CognitiveServicesCredentials(subscription_key))

# Load the image to extract text from
image_url = "https://carwow-uk-wp-2.imgix.net/LEAF-source-1-scaled-e1612178298223.jpg"

# Call the OCR method on the image
read_response = computervision_client.read(image_url, raw=True)

# Get the operation location (URL with an ID at the end) from the response
read_operation_location = read_response.headers["Operation-Location"]

# Grab the ID from the URL
operation_id = read_operation_location.split("/")[-1]

# Call the "GET" API and wait for it to retrieve the results
while True:
read_result = computervision_client.get_read_result(operation_id)
if read_result.status not in ['notStarted', 'running']:
break
time.sleep(1)

# Print the detected text and bounding box for each line
if read_result.status == OperationStatusCodes.succeeded:
for text_result in read_result.analyze_result.read_results:
for line in text_result.lines:
# Check if the line contains a license plate number
if any(char.isdigit() for char in line.text) and any(char.isalpha() for char in line.text):
# Print the license plate number and bounding box
print("License plate number:", line.text)
# Exit the loop if a license plate number is found
break
print()

# End of code
print("End of Computer Vision quickstart.")

Please replace the dummy key values with the real ones.

Output: 
License plate number: 0Y19 XMG
Output
License plate number: 7JZK433

Conclusion

Azure Cognitive Service Computer Vision provides a simple and powerful API to extract text from images using OCR. In this article, we demonstrated how to use the Computer Vision client to extract license plate numbers from an image. This technology can be used in a wide range of applications, including automated toll collection, parking management, and law enforcement.

Notebook — https://github.com/PolyCloudNative/ImageReader/blob/main/car-number-plate-ocr-azure.ipynb

--

--

Ravi Tiwari
Ravi Tiwari

Written by Ravi Tiwari

Experienced hands-on CTO with 20+ years of cloud native microservices expertise, driving solutions for large-scale enterprises.

No responses yet