Info
This question is closed. Reopen it to edit or answer.
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 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Image Analyst
on 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 Comments
Walter Roberson
on 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
on 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
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!