apoorva-dave / LicensePlateDetector

Detects license plate of car and recognizes its characters
345 stars 113 forks source link

Can't replicate the test results #29

Open shukkkur opened 2 years ago

shukkkur commented 2 years ago

When when I run the code from DetectPlate.py on the first picture from README.md, this is the result I get image

On car6.jpg and car.png it works perfectly.

I also comment this part of the code

car_image = imutils.rotate(car_image, 270)

Can the shape of the image affect the accuracy? Please help.

matthiasgruber commented 2 years ago

Yes. CV depends on the input shape; every picture should be scaled to the same dimension!

jarulraj commented 1 year ago

Thanks for sharing this helpful application, @apoorva-dave! Here is a notebook that also supports license plate detection:

https://github.com/georgia-tech-db/eva https://github.com/georgia-tech-db/license-plate-recognition/blob/main/README.ipynb

README_15_0