luoyc a9c35a4807 opencv source code commit | 1 jaar geleden | |
---|---|---|
.. | ||
cmake | 1 jaar geleden | |
doc | 1 jaar geleden | |
include | 1 jaar geleden | |
misc | 1 jaar geleden | |
samples | 1 jaar geleden | |
src | 1 jaar geleden | |
test | 1 jaar geleden | |
tutorials | 1 jaar geleden | |
CMakeLists.txt | 1 jaar geleden | |
README.md | 1 jaar geleden | |
text_config.hpp.in | 1 jaar geleden |
The module contains algorithms to detect text, segment words and recognise the text. It's mainly intended for the "text in the wild", i.e. short phrases and separate words that occur on navigation signs and such. It's not an OCR tool for scanned documents, do not treat it as such. The detection part can in theory handle different languages, but will likely fail on hieroglyphic texts.
The recognition part currently uses open-source Tesseract OCR (https://code.google.com/p/tesseract-ocr/). If Tesseract OCR is not installed on your system, the corresponding part of the functionality will be unavailable.
Here are instructions on how to install Tesseract on your machine (Linux or Mac; Windows users should look for precompiled binaries or try to adopt the instructions below):
Linux users may try to install tesseract-3.03-rc1 (or later) and leptonica-1.70 (or later) with the corresponding development packages using their package manager. Mac users may try brew. The instructions below are for those who wants to build tesseract from source.
download leptonica 1.70 tarball (helper image processing library, used by tesseract. Later versions might work too): http://www.leptonica.com/download.html unpack and build it:
cd leptonica-1.70 mkdir build && cd build && ../configure && make && sudo make install
leptonica will be installed to /usr/local.
export LIBLEPT_HEADERSDIR=/usr/local/include/ cd tesseract-3.03 mkdir build && cd build ../configure --with-extra-includes=/usr/local --with-extra-libraries=/usr/local make && sudo make install
Tesseract will be installed to /usr/local.
unzip it (gzip -d eng.traineddata.gz) and copy to /usr/local/share/tessdata.
Google announced that they close code.google.com, so at some moment in the future you may have to find Tesseract 3.03rc1 or later.
Tesseract configure script may fail to detect leptonica, so you may have to edit the configure script - comment off some if's around this message and retain only "then" branch.
You are encouraged to search the Net for some better pre-trained classifiers, as well as classifiers for other languages.
The text module now have a text detection and recognition using deep CNN. The text detector deep CNN that takes an image which may contain multiple words. This outputs a list of Rects with bounding boxes and probability of text there. The text recognizer provides a probabillity over a given vocabulary for each of these rects.