This project uses YOLO-NAS and EasyOCR to detect license plates and perform Optical Character Recognition (OCR) on them. The project includes both image and video processing capabilities, and has been deployed as a Streamlit web application. This is an update to a previous project, Optical-Character-Recognition-WebApp
The dataset used for training and testing the YOLO-NAS model contains 484 annotated images of cars with license plates. The images were sourced from “Brave Images”, “Google Images”, and “https://flickr.com/”. The annotations were made using RoboFlow.
This project builds upon an earlier version that used YOLO-v5 and InceptionResNetV2 . The major changes and updates in this version include:
‘PPYoloELoss/loss’: 1.8294234
git clone https://github.com/JacobJ215/YOLO-NAS-OCR-WebApp/tree/main"
cd YOLO-NAS-OCR-WebApp
pip install -r requirements.txt
streamlit run app.py
The web application provides two main modes: Run on Image: Upload an image containing a license plate, and the application will perform real-time detection and OCR, displaying the extracted text from the license plate.
Run on Video: Upload a video with license plates, and the application will perform real-time detection and OCR on the video frames, showing the extracted text and the frame rate.
Inspired by https://github.com/MuhammadMoinFaisal
The YOLO-NAS model used in this project is based on Super-Gradients Repository.
EasyOCR is an excellent OCR library developed by Jaided AI.