Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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 (최근 30일)
For example in this image i need to detect to 'R' letter
when i go to detect it detects arabic letters also as well.

답변 (1개)

Image Analyst
Image Analyst 2017년 1월 5일
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
Walter Roberson
Walter Roberson 2017년 1월 6일
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
Image Analyst 2017년 1월 6일
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

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by