需要使用opencv制作ocr的步骤

时间:2012-06-06 06:08:38

标签: c++ opencv ocr

我正在尝试使用opencv的Haar分类器创建一个OCR库。但它运行不正常。所以你能告诉我制作OCR的步骤是什么吗?是否可以使用Haar分类器?

1 个答案:

答案 0 :(得分:6)

谷歌上有很多书籍,教程等。

但是有两本书对你有用。

1)Handbook of Character Recognition and Document Image Analysis by H. Bunke and P. S. P. Wang

2)Optical Character Recognition: An Illustrated Guide to the Frontier (The Springer International Series in Engineering and Computer Science) by Stephen V. Rice, George Nagy and Thomas A. Nartker

他们有一些很好的深刻理论。

你可以在这里看到一个简单的数字OCR,在C ++中使用kNN:Basic OCR in OpenCV

您可以在此SOF中使用kNN查看OCR的简单Python实现:Simple Digit Recognition OCR in OpenCV-Python

在OpenCV svn中,您可以使用ANN查看用于手写识别的新Python示例:... svn \ opencv \ samples \ python2 \ digits.py。代码在Python中,但所有OpenCV函数也可以在C ++中使用。

希望这对启动来说已经足够了。