1

正如标题所示,我想在 Windows 中构建一个 ANPR 应用程序。我正在使用巴西车牌。我正在为此使用 OpenCV。

到目前为止,我设法从车牌中提取字母。下图显示了我提取的一些数字。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述 我面临的问题是如何识别这些字母。我尝试使用 Google tesseract。但有时它无法识别它们。然后我尝试使用 OpenCV 训练 OCR 数据库,我为每个字符使用了大约 10 张图像。但它也无法正常工作。

所以我被困在这里。我需要这个作为最后一年的项目。所以有人可以帮助我吗?我真的很感激。

以下网站做得很好 https://www.anpronline.net/demo.html

谢谢..

4

2 回答 2

1

你可以在字母图像上训练 ann 或多类 svm,就像这里

于 2013-11-20T13:18:01.290 回答
0

Check out OpenALPR (http://www.openalpr.com). It already has the problem solved.

If you need to do it yourself, you really do need to train Tesseract. It will give you the best results. 10 images per character is not enough, you need dozens or hundreds. If you can find a font that is similar to your plate characters, a good approach is to print out a sheet of paper with all of the characters used multiple times. Then take 5-10 pictures of the page with your camera. These can then be your input for training Tesseract.

于 2014-01-16T16:08:19.230 回答