Build OpenCV text(OCR) module on windows

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Build OpenCV text(OCR) module on windows相关的知识,希望对你有一定的参考价值。

Background.

AOI software needs to use the OCR feature to recognize the texts on the chips. Because our vision software is based on OpenCV, so the first choice is text module in opencv_contrib.

 

Procedures.

1. OCR module is not in standard OpenCV package. It is in text module of OpenCV_Contrib. It can be downloaded from opencv_contrib.

2. The core of OCR is using Tesseract, and Tesseract depends on Leptonica, so need to build Leptonica and Tesseract first.

3. Get the Leptonica from https://github.com/charlesw/tesseract-vs2012. This project can directly build. The output is liblept171d.dll and liblept171d.lib.

4. Get the Tesseract from https://github.com/tesseract-ocr/tesseract. Copy liblept171d.lib to .\tesseract\lib folder. Create the .\tesseract\include\leptonica folder, copy all the header file from .\tesseract-vs2012\liblept\include (The root folder is in step 3).  Set the project property of tesseract, change the include folder path "..\..\..\include" and "..\..\..\include\leptonica" to "..\..\include" and "..\..\include\leptonica". Then can build the Tessrect project, the output is libtesseract304d.dll and libtesseract304d.lib.

5. Use CMake to config the OpenCV solution. Copy the text module from opencv_contrib to .\OpenCV\sources\modules. Run Cmake_Gui, there are 3 options need to set. Lept_library, Tesseract_Include_Dir, Tesseract_Library. Tesseract_Include_Dir set to ...../tesseract/API. After set, can run CMake to config and generate the solution.

6. Build the OpenCV solution. If there are header files can not find errors, find and copy them from tesseract to the API folder. There may be a compile error with std::numeric_limits<double>::min(); Add below code before the function use it.

#undef max 
#undef min

7. Download the language test data from https://github.com/tesseract-ocr/tessdata. What i use is the eng.traineddata. Put it to .\tesseract\tessdata.

8. After build OpenCV successfully, then you can create the TestOpenCV project with the below function, before running it, need to copy the liblept171d.dll and libtesseract304d.dll to the output folder(where the exe file is put).

using OCRTesseract =  cv::text::OCRTesseract;
void TestOCR()
{    
    cv::Mat mat = cv::imread(".\\data\\OCRTest.png");
    if ( mat.empty() )
        return;

    std::string output_text;
    char *dataPath = "C:/tesseract-build/tesseract/tessdata";
    cv::Ptr<OCRTesseract> ptrOcr = OCRTesseract::create(dataPath);
    ptrOcr->run(mat, output_text );
    cout << output_text << endl;
}

 

以上是关于Build OpenCV text(OCR) module on windows的主要内容,如果未能解决你的问题,请参考以下文章

Python + OpenCV:OCR 图像分割

准备 OCR OpenCV

Python/OpenCV - 基于机器学习的 OCR(图像到文本)

使用 OpenCV,如何在执行 OCR 之前检测文本方向?

用于 OCR 的 OpenCv pytesseract

进行 OCR 之前的预处理(tesseract、OpenCV)