Software:OCRopus

From HandWiki
OCRopus
OCRopus Texterkennung.png
Developer(s)Thomas Breuel, DFKI
Initial release9 April 2007; 16 years ago (2007-04-09)[1]
Stable release
1.3.3 / 16 December 2017; 6 years ago (2017-12-16)
Written inC++ and Python
Operating systemFreeBSD, Linux, Mac OS X
TypeOptical character recognition
LicenseApache License v2.0
Websitegithub.com/tmbdev/ocropy

OCRopus is a free document analysis and optical character recognition (OCR) system released under the Apache License v2.0 with a very modular design using command-line interfaces.

OCRopus is developed under the lead of Thomas Breuel from the German Research Centre for Artificial Intelligence in Kaiserslautern, Germany and was sponsored by Google.

Description

OCRopus was especially designed for use in high-volume digitization projects of books, such as Google Books, Internet Archive or libraries. A large number of languages and fonts are to be supported.[2] However, it can also be used for desktop and office applications or for application for the visually impaired people.

The main components of OCRopus are formed:

Single or multiple scripts are available for these components. The modular approach allows individual workflows to be used and individual steps to be exchanged.

By default, OCRopus comes with a model for English texts and a model for text in Fraktur. These models refer to the script and are largely independent of the actual language.[3] New characters or language variants can be trained either new or in addition.

Recent text recognition is based on recurrent neural networks (LSTM) and does not require a language model. This makes it possible to train language-independent models for which good recognition results for English, German and French have been shown at the same time.[4] In addition to the Latin script, there are results for other scripts such as Sanskrit, Urdu, Devanagari and Greek.

Very good detection rates can be achieved through an appropriate training. This extra effort is particularly worthwhile for difficult documents or scripts that are no longer common today, which are not in the focus of other OCR software.[5][6]

History

On 9 April 2007, OCRopus was announced as a Google-sponsored project to develop advanced OCR technologies.[1] Funding was granted for a period of three years and covered in particular PhD and postdoctoral positions at DFKI and the University of Kaiserslautern. In return, OCRopus was also used for automatic text recognition in Google Book Search.[7] Licensing under an open source license was made right from the start to facilitate collaboration between industrial and academic research.[8] OCRopus has received further funding from the Andrew W. Mellon Foundation and the BMBF.[9]

The first alpha version 0.1 was released on 22 October 2007 and several pre-releases followed between December 2007 and May 2009 reaching a stable version 0.4.4 in March 2010.[10] Originally, the software was developed in C++, Python and Lua with Jam as a build system. A complete refactoring of the source code in Python modules was done and released in version 0.5 (June 2012).[11]

Initially, Tesseract was used as the only text recognition module. Since 2009 (version 0.4) Tesseract was only supported as a plugin. Instead, a self-developed text recognizer (also segment-based) was used.[12] This recognizer was then used together with OpenFST[13] for language modeling after the recognition step. From 2013 onwards, an additional recognition with recurrent neural networks (LSTM) was offered, which with the release of version 1.0 in November 2014 is the only recognizer.[14][15]

The source code is managed over GitHub and is maintained and developed by a developer community.[16] The current version of OCRopus is 1.3.3 (December 2017).[17]

Usage

OCRopus workflow
Workflow diagram of the separate command line tools from OCRopus.

OCRopus can be used from the command line. Once installed, it can be invoked by specifying the input images. It will output the recognized text to standard output directly or write it as hOCR (HTML-based) code into files, from which it then can be transformed to a searchable PDF. If more precise control is needed, options can be specified on the command line to perform specific operations (e.g. recognizing a single line).[18]

Example for the OCRopus calls to recognize the text in an image:

# perform binarization
ocropus-nlbin tests/ersch.png -o book

# perform page layout analysis
ocropus-gpageseg book/0001.bin.png

# perform text line recognition (with a fraktur model)
ocropus-rpred -m models/fraktur.pyrnn.gz book/0001/*.bin.png

# generate HTML output
ocropus-hocr book/0001.bin.png -o book/0001.html

Other tools concentrate on the training part of OCRopus. There are OCRopus models to extract text from Latin, Greek, Cyrillic and Indic scripts.[19]

References

  1. 1.0 1.1 Breuel, Thomas (2007-04-09). "Announcing the OCRopus Open Source OCR System" (in en-US). Google Developers Blog. https://developers.googleblog.com/2007/04/announcing-ocropus-open-source-ocr.html. 
  2. Breuel, Thomas (2009). Recent Progress on the OCRopus OCR System. MOCR '09. New York, NY, USA: ACM. 2:1–2:10. doi:10.1145/1577802.1577805. ISBN 9781605586984. 
  3. "Models". https://github.com/tmbdev/ocropy/wiki/Models. 
  4. Ul-Hasan, Adnan; Breuel, Thomas M. (2013). Can We Build Language-independent OCR Using LSTM Networks?. MOCR '13. New York, NY, USA: ACM. 9:1–9:5. doi:10.1145/2505377.2505394. ISBN 9781450321143. 
  5. Springmann, Uwe (2016-12-01). "OCR für alte Drucke" (in de). Informatik-Spektrum 39 (6): 459–462. doi:10.1007/s00287-016-1004-3. ISSN 0170-6012. 
  6. Simistira, F.; Ul-Hassan, A.; Papavassiliou, V.; Gatos, B.; Katsouros, V.; Liwicki, M. (August 2015). Recognition of historical Greek polytonic scripts using LSTM networks. 766–770. doi:10.1109/icdar.2015.7333865. ISBN 978-1-4799-1805-8. 
  7. "Research project OCRopus" (in en). https://www.dfki.de/web/forschung/projekte?pid=396&cl=en. 
  8. Breuel, Thomas M. (2008-01-28). "The OCRopus open source OCR system". Proceedings Volume 6815, Document Recognition and Retrieval XV. Document Recognition and Retrieval XV 6815: 68150F–68150F–15. doi:10.1117/12.783598. Bibcode2008SPIE.6815E..0FB. 
  9. "ocropus project website". January 2019. http://code.google.com:80/p/ocropus#Acknowledgements. 
  10. "Older versions - ocropy". https://github.com/tmbdev/ocropy/wiki/Older-versions. 
  11. "OCRopus 0.5". 2012-06-02. https://groups.google.com/forum/#!topic/ocropus/S73OMtJdVmw/discussion. 
  12. OCRopus doesn't even link with Tesseract by default.
  13. Official OpenFST website.
  14. "ocropy - release v1.0". 2014-11-02. https://github.com/tmbdev/ocropy/releases/tag/v1.0. 
  15. Breuel, T. M.; Ul-Hasan, A.; Al-Azawi, M. A.; Shafait, F. (August 2013). High-Performance OCR for Printed English and Fraktur Using LSTM Networks. 683–687. doi:10.1109/icdar.2013.140. ISBN 978-0-7695-4999-6. 
  16. ocropy: Python-based tools for document analysis and OCR, https://github.com/tmbdev/ocropy, retrieved 2018-01-05 
  17. "Releases ocropy". https://github.com/tmbdev/ocropy/releases. 
  18. "ocropy wiki". https://github.com/tmbdev/ocropy/wiki. 
  19. "ocropy models" (in en). https://github.com/tmbdev/ocropy/wiki/Models. 

External links