ANPR / LPR Search (Auto License Plate Recognition / Subscription Recognition) SDK for Android

I am looking for ANPR / LPR (Automatic License Plate Recognition / Subscription Recognition) SDK for Android. Is there any SDK for Android?

I want to develop a license plate identification software for android, where users can scan the plate using the phone’s camera and identify the number.

I tried some optical character recognition systems (OCR) such as Tesseract, but the accuracy is so poor.

Is there any method that I can use but OCR?

+6
source share
2 answers

I am also working on ANPR. I think just using OCR may not help. The open source project Javananpr helped me understand the problems and how they can be solved. I suggest you read the documentation there and maybe it can give you some direction.

+2
source

Open OpenALPR ( http://www.openalpr.com )

This is a C ++ library that uses OpenCV and Tesseract. It should be possible to run this on Android via JNI.

+8
source

Source: https://habr.com/ru/post/945133/


All Articles