Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
I am working on number plate recognition system, I have so far successful in detecting numbers but in number plate i want to detect english letter only no need for arabic can any one help me in that ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
For example in this image i need to detect to 'R' letter
when i go to detect it detects arabic letters also as well.
0 Kommentare
Antworten (1)
Image Analyst
am 5 Jan. 2017
You need to do OCR on the image. Use the OCR capability in the Computer Vision System Toolbox. Perhaps you can tell it to ignore Arabic letters.
4 Kommentare
Walter Roberson
am 6 Jan. 2017
I just tried ocr() on it, and it failed completely. However if you resize the image down to about 1/3 then ocr() can find something... mostly just the big box, nothing useful.
But if you use
lp = imresize( imread('IMG_0618.JPG'), 0.3);
bl = rgb2gray(lp) < 100;
then you could do region detection on that, pull out the sub-images and ocr them (probably).
Image Analyst
am 6 Jan. 2017
It's a heavily studied field. So much so that there are now commercial systems available to do license plate recognition, and many police cars have them. You can find the published algorithms here: http://www.visionbib.com/bibliography/motion-f726.html#License%20Plate%20Recognition,%20Extraction,%20Analysis
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!