Using tesseract to recognize license plates

前端 未结 5 1064
挽巷
挽巷 2020-12-07 08:41

I\'m developing an app which can recognize license plates (ANPR). The first step is to extract the licenses plates from the image. I am using OpenCV to detect the plates bas

5条回答
  •  借酒劲吻你
    2020-12-07 09:16

    Now License Plate can be easily recognized by mlmodel. I have created the core model you can find it here . You just need to split characters in 28*28 resolution through vision framework and send this image to VNImageRequestHandler like given below-

    let handler = VNImageRequestHandler(cgImage: imageUI.cgImage!, options: [:])
    

    you will get desired results by using my core mlmodel. Use this link for better clarification but use my model for better results in license plate recognition. I have also created the mlmodel for License Plate Recognition.

提交回复
热议问题