Car Plate Number detection & RTO Verification check by Machine Learning using Python
Many a times in Parking we face issues, people park their cars in different directions/angles and we š yell at ourselves that why we parked our cars besides theirs. š
Isnāt it amazing when an application gives car owner details so that we can identify them and ask for help. Just by putting number plate value you can directly verify details from authorized party ā RTO.
Letās check the application and itās workingā¦
Firstly we need to understand how we get the car number plate values just by scanning number plate. Yes you guessed right, itās computer vision which will help us in it.
- Import some libraries:
Make sure you must have downloaded all using āpip installā command
2. Write function to extract number plate image
Using cv2 module connect with camera and click the image of car. Here we are opening internal camera using VideoCapture() function, then read image store in variable, convert image in gray format.
On pressing Enter key (13), the camera stops capturing image and the loop ends.
3. Write function extract number plate region from Image.
Just to filter number plate region we need to identify the coordinates and store the new extracted image in another variable. easyocr python library helps to detect image having text.
4. Lastly get the number plate value in text format function.
After this part you will get the number plate value, copy paste it in the application (Car Number field).
Lets check the html and js code, for backend I have used Python CGI.
Backend code:
JavaScript Code:
HTML code: (Structure of Web Application):
Lets see how our website looks and worksā¦
ā¾ Click on html file, it will open in browser:
After entering the number plate value, you will get details replacing āDetailsā division.
Hope this small project help you. Thanks for Reading.
You may connect me on LinkedIn:
For code of this mini project visit: