This repository contains the source code for a Vehicle Number Plate Recognition (VNPR) system developed using YOLOv8 for object detection, EasyOCR for optical character recognition, and OpenCV for image processing. The system allows for rapid license plate detection from live camera feeds, enabling efficient access to information related to recognized license plates.
To get started with the VNPR system, follow these steps:
- Install YOLOv8:
# Clone the YOLOv8 repository
!git clone https://github.com/WongKinYiu/yolov8.git
# Change directory to YOLOv8
%cd yolov8
# Install dependencies
!pip install -U -r requirements.txt
- Install EasyOCR:
!pip install easyocr
- Install OpenCV:
!pip install opencv-python
Please check out the respective repositories for more details on the implementations and use cases.