VOOZH about

URL: https://pypi.org/project/pyocr/

โ‡ฑ pyocr ยท PyPI


Skip to main content

pyocr 0.8.5

pip install pyocr

Latest release

Released:

A Python wrapper for OCR engines (Tesseract, Cuneiform, etc)

Navigation

Verified details

These details have been verified by PyPI
Maintainers
๐Ÿ‘ Avatar for jflesch from gravatar.com
jflesch

Unverified details

These details have not been verified by PyPI
Meta

Project description

PyOCR

PyOCR is an optical character recognition (OCR) tool wrapper for python. That is, it helps using various OCR tools from a Python program.

It has been tested only on GNU/Linux systems. It should also work on similar systems (*BSD, etc). It may or may not work on Windows, MacOSX, etc.

Supported OCR tools

  • Libtesseract (Python bindings for the C API)
  • Tesseract (wrapper: fork + exec)
  • Cuneiform (wrapper: fork + exec)

Features

  • Supports all the image formats supported by Pillow, including jpeg, png, gif, bmp, tiff and others
  • Various output types: text only, bounding boxes, etc.
  • Orientation detection (Tesseract and libtesseract only)
  • Can focus on digits only (Tesseract and libtesseract only)
  • Can save and reload boxes in hOCR format
  • PDF generation (libtesseract only)

Limitations

  • hOCR: Only a subset of the specification is supported. For instance, pages and paragraph positions are not stored.

Installation

sudopip3installpyocr# Python 3.X

or the manual way:

mkdir-p~/git;cdgit
gitclonehttps://gitlab.gnome.org/World/OpenPaperwork/pyocr.git
cdpyocr
makeinstall# will run 'python ./setup.py install'

Usage

Initialization

from PIL import Image
import sys

import pyocr
import pyocr.builders

tools = pyocr.get_available_tools()
if len(tools) == 0:
 print("No OCR tool found")
 sys.exit(1)
# The tools are returned in the recommended order of usage
tool = tools[0]
print("Will use tool '%s'" % (tool.get_name()))
# Ex: Will use tool 'libtesseract'

langs = tool.get_available_languages()
print("Available languages: %s" % ", ".join(langs))
lang = langs[0]
print("Will use lang '%s'" % (lang))
# Ex: Will use lang 'fra'
# Note that languages are NOT sorted in any way. Please refer
# to the system locale settings for the default language
# to use.

Image to text

txt = tool.image_to_string(
 Image.open('test.png'),
 lang=lang,
 builder=pyocr.builders.TextBuilder()
)
# txt is a Python string

word_boxes = tool.image_to_string(
 Image.open('test.png'),
 lang="eng",
 builder=pyocr.builders.WordBoxBuilder()
)
# list of box objects. For each box object:
# box.content is the word in the box
# box.position is its position on the page (in pixels)
#
# Beware that some OCR tools (Tesseract for instance)
# may return empty boxes

line_and_word_boxes = tool.image_to_string(
 Image.open('test.png'), lang="fra",
 builder=pyocr.builders.LineBoxBuilder()
)
# list of line objects. For each line object:
# line.word_boxes is a list of word boxes (the individual words in the line)
# line.content is the whole text of the line
# line.position is the position of the whole line on the page (in pixels)
#
# Each word box object has an attribute 'confidence' giving the confidence
# score provided by the OCR tool. Confidence score depends entirely on
# the OCR tool. Only supported with Tesseract and Libtesseract (always 0
# with Cuneiform).
#
# Beware that some OCR tools (Tesseract for instance) may return boxes
# with an empty content.

# Digits - Only Tesseract (not 'libtesseract' yet !)
digits = tool.image_to_string(
 Image.open('test-digits.png'),
 lang=lang,
 builder=pyocr.tesseract.DigitBuilder()
)
# digits is a python string

Argument 'lang' is optional. The default value depends of the tool used.

Argument 'builder' is optional. Default value is builders.TextBuilder().

If the OCR fails, an exception pyocr.PyocrException will be raised.

An exception MAY be raised if the input image contains no text at all (depends on the OCR tool behavior).

Orientation detection

Currently only available with Tesseract or Libtesseract.

if tool.can_detect_orientation():
 try:
 orientation = tool.detect_orientation(
 Image.open('test.png'),
 lang='fra'
 )
 except pyocr.PyocrException as exc:
 print("Orientation detection failed: {}".format(exc))
 return
 print("Orientation: {}".format(orientation))
# Ex: Orientation: {
# 'angle': 90,
# 'confidence': 123.4,
# }

Angles are given in degrees (range: [0-360[). Exact possible values depend of the tool used. Tesseract only returns angles = 0, 90, 180, 270.

Confidence is a score arbitrarily defined by the tool. It MAY not be returned.

detect_orientation() MAY raise an exception if there is no text detected in the image.

Writing and reading text files

Writing:

import codecs
import pyocr
import pyocr.builders

tool = pyocr.get_available_tools()[0]
builder = pyocr.builders.TextBuilder()

txt = tool.image_to_string(
 Image.open('test.png'),
 lang=lang,
 builder=builder
)
# txt is a Python string

with codecs.open("toto.txt", 'w', encoding='utf-8') as file_descriptor:
 builder.write_file(file_descriptor, txt)
# toto.txt is a simple text file, encoded in utf-8

Reading:

import codecs
import pyocr.builders

builder = pyocr.builders.TextBuilder()
with codecs.open("toto.txt", 'r', encoding='utf-8') as file_descriptor:
 txt = builder.read_file(file_descriptor)
# txt is a Python string

Writing and reading hOCR files

Writing:

import codecs
import pyocr
import pyocr.builders

tool = pyocr.get_available_tools()[0]
builder = pyocr.builders.LineBoxBuilder()

line_boxes = tool.image_to_string(
 Image.open('test.png'),
 lang=lang,
 builder=builder
)
# list of LineBox (each box points to a list of word boxes)

with codecs.open("toto.html", 'w', encoding='utf-8') as file_descriptor:
 builder.write_file(file_descriptor, line_boxes)
# toto.html is a valid XHTML file

Reading:

import codecs
import pyocr.builders

builder = pyocr.builders.LineBoxBuilder()
with codecs.open("toto.html", 'r', encoding='utf-8') as file_descriptor:
 line_boxes = builder.read_file(file_descriptor)
# list of LineBox (each box points to a list of word boxes)

Generating PDF file from an image

With libtesseract >= 4, it's possible to generate a PDF from an image:

import PIL.Image
import pyocr

image = PIL.Image.open("image.jpg")

builder = pyocr.libtesseract.LibtesseractPdfBuilder()
builder.add_image(image) # multiple images are added as separate pages
builder.set_lang("deu") # optional
builder.set_output_file("output_filename") # .pdf will be appended
builder.build()

Add text layer to PDF

import pyocr
import pdf2image

images = pdf2image.convert_from_path("file.pdf", dpi=200, fmt='jpg')

builder = pyocr.libtesseract.LibtesseractPdfBuilder()
for image in images:
 builder.add_image(image)
builder.set_output_file("output") # .pdf will be appended
builder.build()

Beware this code hasn't been adapted to libtesseract 3 yet.

Dependencies

  • PyOCR requires Python 3.4 or later.
  • You will need Pillow or Python Imaging Library (PIL). Under Debian/Ubuntu, Pillow is in the package python-pil (python3-pil for the Python 3 version).
  • Install an OCR:
    • libtesseract ('libtesseract3' + 'tesseract-ocr-<lang>' in Debian).
    • or tesseract-ocr ('tesseract-ocr' + 'tesseract-ocr-<lang>' in Debian). You must be able to invoke the tesseract command as "tesseract". PyOCR is tested with Tesseract >= 3.01 only.
    • or Cuneiform

Tests

makecheck# requires pyflake8
maketest# requires tox, pytest and python3

Tests are made to be run without external dependencies (no Tesseract or Cuneiform needed).

OCR on natural scenes

If you want to run OCR on natural scenes (photos, etc), you will have to filter the image first. There are many algorithms possible to do that. One of those who gives the best results is Stroke Width Transform.

Contact

Applications that use PyOCR

If you know of any other applications that use Pyocr, please tell us :-)

Copyright

PyOCR is released under the GPL v3+. Copyright belongs to the authors of each piece of code (see the file AUTHORS for the contributors list, and git blame to know which lines belong to which author).

https://gitlab.gnome.org/World/OpenPaperwork/pyocr

Project details

Verified details

These details have been verified by PyPI
Maintainers
๐Ÿ‘ Avatar for jflesch from gravatar.com
jflesch

Unverified details

These details have not been verified by PyPI
Meta

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyocr-0.8.5.tar.gz (71.8 kB view details)

Uploaded Source

Built Distribution

Filter files by name, interpreter, ABI, and platform.

If you're not sure about the file name format, learn more about wheel file names.

Copy a direct link to the current filters

pyocr-0.8.5-py3-none-any.whl (40.0 kB view details)

Uploaded Python 3

File details

Details for the file pyocr-0.8.5.tar.gz.

File metadata

  • Download URL: pyocr-0.8.5.tar.gz
  • Upload date:
  • Size: 71.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for pyocr-0.8.5.tar.gz
Algorithm Hash digest
SHA256 eff33d95032426a92640e56fa0d71b496ee531c1d341a15cc610610a7c5eac55
MD5 c9458d6ea08628a564fca7fe1b8bfe16
BLAKE2b-256 03fca44ddc6b778dbc450db0e782feab3dcf329401efed9d1a0c820226ca28da

See more details on using hashes here.

File details

Details for the file pyocr-0.8.5-py3-none-any.whl.

File metadata

  • Download URL: pyocr-0.8.5-py3-none-any.whl
  • Upload date:
  • Size: 40.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for pyocr-0.8.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3a534eee5ac6ce681159d67528b8953f0f2a7a5aad8733373ea7b3e8ac13a0b4
MD5 7eae29461c5079a5ec85702607256e33
BLAKE2b-256 911c3ef6485732685ad9c938c9ebb3fad0570f58bdc54e1242cdfa40040a630e

See more details on using hashes here.

Supported by

๐Ÿ‘ Image
AWS Cloud computing and Security Sponsor ๐Ÿ‘ Image
Datadog Monitoring ๐Ÿ‘ Image
Depot Continuous Integration ๐Ÿ‘ Image
Fastly CDN ๐Ÿ‘ Image
Google Download Analytics ๐Ÿ‘ Image
Pingdom Monitoring ๐Ÿ‘ Image
Sentry Error logging ๐Ÿ‘ Image
StatusPage Status page