Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect license plate in an image with Python and without cvblob?

I want to detect the presence of a license plate in an image, using Python code.

I got multiple suggestions to use the package cvblob, but I am unable to install cvblob on my Ubuntu system.

What is the best approach to this problem that does not require cvblob?

like image 632
Nandha Kumar Avatar asked Nov 11 '22 09:11

Nandha Kumar


1 Answers

You may use SimpleCV, it is a wrapper on opencv-python alongwith OCR support which may help you read the license plate text, if its clearly visible. In my experience, it is the most beginner-friendly.

like image 75
bendtherules Avatar answered Nov 14 '22 22:11

bendtherules