iMicknl / cordova-plugin-openalpr

This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture.
MIT License
32 stars 23 forks source link

Plugin Not Fetching Data From South Africa License Plate #34

Closed jainankit09 closed 5 years ago

jainankit09 commented 6 years ago

Hello Friend,

I am using this plugin in my one of phonegap project for accessing data from License Plate of South Africa . i am using this code

cordova.plugins.OpenALPR.scan(filepath, { country: 'ZA', amount: 3 }, function (results) {
     console.log(results);
 }, function (error) {
     console.log(error.code + ': ' + error.message)
 });

where ZA is two letter country code for South Africa. code has been compiled successfully. But i am not able to get data after scan license plate image. I found there are many conf file present under runtime_data/config folder for other country like eu,us,fr,gb etc. Please help me and let me know how can i use this . how can we manage conf file for South Africa.

Thanks in Advance!

baukeroo commented 6 years ago

Hi,

I 'm not sure if South Africa is already in the trained data set. To train OpenALPR for South Africa you could take a look at: https://github.com/openalpr/train-ocr

Kind regards, Bauke Roo

iMicknl commented 5 years ago

Closed due to inactivity. Please comment if the issue still persists and we will reopen.

joshuar87 commented 5 years ago

Hi is there any progress on this? Tempted to create one using the training tessract OCR to create a ZA file. I know eu config works on some plates so might start with that file...