quangnhat185 / Plate_detect_and_recognize

Detecting and Reading vehicle's license plate from various countries (Germany, Vietnam, Japan, Thailand, Saudi, Russia, Korea, Usa, India, China)
MIT License
169 stars 125 forks source link

Does the provided 1st stage model is for only detection of LP or for the Vehicle as well #5

Closed Harsha-1729 closed 4 years ago

Harsha-1729 commented 4 years ago

Hello Quang,

Firstly thanks for your in depth article on medium.com.

Its mentioned in the Sérgio Montazzolli paper that, three main steps: Vehicle detection, LP detection and OCR.

My question is: Does the wpod-net.h5 trained model also detects the Vehicle in a given raw image or its the second stage (LP detection).

If the wpod-net.h5 is only for detecting the LP from output of 1st stage(Vehicle Detection), where can I get the trained model for Vehicle Detection.

Please let me know if anything is not clear.

Thanks Harsha

quangnhat185 commented 4 years ago

Hi Harsha, Wpod was trained focusly on detecting the features of license plate. That is why sometimes it can mistakenly detect averstising panels on the street instead of vehicle LP. The output of Wpod are simply 4 coordinates of the suspicious LP.

The idea solution is that you use a popular car detector such as Yolo or MobileNets-SSD to detect the car, then extract license plate from it.

There is a really good tutorial for car detecting using MobileNets-SSD which you can refer here

Harsha-1729 commented 4 years ago

Thank you very much for your reply :-)