parking with licence plate recognition,,HELP

3 Ansichten (letzte 30 Tage)
abdiaziz abdullahi
abdiaziz abdullahi am 11 Nov. 2017
Beantwortet: Image Analyst am 15 Nov. 2017
hello everyone,,i have been working on a project(automatic parking using number plate recognition algorithm,,license plate recognition algorithm based on Templates matching. The algorithm takes an input image of the number plate and after filtering the image, it performs region based operations. Then it tries to capture the characters regions in a processed binary image and with the aid of template matching outputs the string of number plate characters in text format,,,am currently done with the recognition and output part,,,am having some problems with the creation and connection of the database to the NPR code so as to compare the text output of the first part of the code and see whether the detected plate number is a registered customer or not..i will appreciate any help.THANK YOU
  8 Kommentare
Image Analyst
Image Analyst am 12 Nov. 2017
Wow - there's no way we could have know how to help just from your original message. No way I would have guessed at this chunk of code. Anyway, did you try the Computer Vision System Toolbox? It can do OCR and find text in natural scenes. If not, why not? It would be hard for you to put in all the time and effort that they already have. Since they've done it, why not just buy it?
abdiaziz abdullahi
abdiaziz abdullahi am 12 Nov. 2017
i cant buy it,,because this is the specific project that i want to do,,unless they are exactly the same,,,i saw this code for comparison from a another similar code...was thinking if i could do the same and how...
function G = comparison(ans)
Data = ['XJZ 7743';'OKW 4532';'JFZ 4056';'LLZ 2268';'JGF 3678';'DHQ 5491'];
A = char(ans);
B = cellstr(Data);
D = cellstr(A);
F = strcmp(D,B);
G = F(1)|F(2)|F(3)|F(4)|F(5)|F(6);
end

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Walter ANPR
Walter ANPR am 15 Nov. 2017
If I would have the same challenge, I would interface with an Industry Grade LPR / ANPR system which already deals with many countries' license plate formats and format / syntax changes with which you should cope with as well, instead of reinventing that wheel. Then you can concentrate on the parking management software, where just interfacing with a professional, open LPR / ANPR system would just ask for a small part of your development efforts.
Regards, Walter.

Image Analyst
Image Analyst am 15 Nov. 2017
"i cant buy it,,because this is the specific project that i want to do"
So if you're not allowed to buy or otherwise use other people's software because you're supposed to do it yourself, then all I can suggest is http://www.mathworks.com/matlabcentral/answers/8026-best-way-s-to-master-matlab

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by