Objective: To develop a system for Supervision of Vehicle Entry-Exit into a premises
The Basic Workflow of the Application is
Object Detection.
Image processing on the detected object (Number Plate).
Text Extraction using OCR
Storing and match the result from MySQL database
Object detection
Object detection is an application of computer vision and image processing that deals with detecting instances of
semantic objects of a certain class (such as humans, buildings, cars or anything that can be visually distinguished) in
digital images and videos.
It refers to the process of discovering the location of objects in images. To do this, computer vision algorithms must
first be able to recognize objects. Object recognition is a foundational subfield within computer vision that allows
the software to identify specific features based on their visual attributes, such as proportion, position, and appearance.
Once objects have been identified, object detection can find and localize these targets in images.
Below is the screenshot of the programme
Labeling specification for object detection
class_id: Object class name in nominal value (example 0,1,2)
x_center : X component of center of bounding box
y_center : Y component of center of bounding box
width : width of bounding box
Height : height of bounding box