Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
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 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Image Analyst
le 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 commentaires
Walter Roberson
le 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
le 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
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!