xuexingyu24 / License_Plate_Detection_Pytorch

A two stage lightweight and high performance license plate recognition in MTCNN and LPRNet
Other
641 stars 171 forks source link

Can I output the landmark in some way? #6

Open lishuwei10 opened 4 years ago

lishuwei10 commented 4 years ago

I want to output the landmark, I mean those points. I notice that the class Onet in MTCNN_net.py has a return c which was commented. Does this c have any thing to do with the landmark? Thanks!

xuexingyu24 commented 4 years ago

MTCNN is heavily used for face recognition, the return "c" gives the outputs of face 5 landmarks. In this repo, it is commented. You can definitely output the landmark, but depend on what landmarks you want to output, you need to prepare the training dataset with landmark labeled

lishuwei10 commented 4 years ago

Thank you very much for your reply! The CCPD dataset has landmark label, I'll try that.