/usr/share/ocrodjvu/lib/engines/gocr.py is in ocrodjvu 0.10.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | # encoding=UTF-8
# Copyright © 2010-2015 Jakub Wilk <jwilk@jwilk.net>
#
# This file is part of ocrodjvu.
#
# ocrodjvu is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# ocrodjvu is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
from __future__ import division
import functools
import re
import shlex
try:
from lxml import etree
except ImportError:
from xml.etree import cElementTree as etree
from . import common
from .. import errors
from .. import image_io
from .. import ipc
from .. import text_zones
from .. import unicode_support
from .. import utils
const = text_zones.const
_default_language = 'eng'
_language_pattern = re.compile('^[a-z]{3}$')
_version_re = re.compile(r'\bgocr ([0-9]+).([0-9]+)\b')
class ExtractSettings(object):
def __init__(self, rotation=0, details=text_zones.TEXT_DETAILS_WORD, uax29=None, page_size=None, **kwargs):
self.rotation = rotation
self.details = details
if uax29 is not None:
icu = unicode_support.get_icu()
if uax29 is True:
uax29 = icu.Locale('en-US-POSIX')
else:
uax29 = icu.Locale(uax29)
self.uax29 = uax29
self.page_size = page_size
def scan(stream, settings):
word_break_iterator = functools.partial(unicode_support.word_break_iterator, locale=settings.uax29)
stack = [[], [], []]
for _, element in stream:
if element.tag in ('barcode', 'img'):
continue
if element.tag == 'page':
if len(stack) != 1:
raise errors.MalformedOcrOutput('<page> at unexpected depth')
children = stack.pop()
bbox = text_zones.BBox(*((0, 0) + settings.page_size))
zone = text_zones.Zone(const.TEXT_ZONE_PAGE, bbox, children)
zone.rotate(settings.rotation)
return zone
elif element.tag == 'block':
if len(stack) != 2:
raise errors.MalformedOcrOutput('<page> at unexpected depth')
children = stack.pop()
if len(children) == 0:
raise errors.MalformedOcrOutput('<block> has no children')
bbox = text_zones.BBox()
for child in children:
bbox.update(child.bbox)
zone = text_zones.Zone(const.TEXT_ZONE_REGION, bbox, children)
stack[-1] += [zone]
elif element.tag == 'line':
if len(stack) != 3:
raise errors.MalformedOcrOutput('<line> at unexpected depth')
children = stack.pop()
if len(children) == 0:
raise errors.MalformedOcrOutput('<line> has no children')
bbox = text_zones.BBox()
for child in children:
bbox.update(child.bbox)
children = text_zones.group_words(children, settings.details, word_break_iterator)
zone = text_zones.Zone(const.TEXT_ZONE_LINE, bbox, children)
stack[-1] += [zone]
elif element.tag in ('box', 'space'):
if len(stack) > 3:
raise errors.MalformedOcrOutput('<{tag}> at unexpected depth'.format(tag=element.tag))
while len(stack) < 3:
stack += [[]]
if element.tag == 'space':
text = ' '
else:
text = element.get('value')
x, y, w, h = (int(element.get(x)) for x in ('x', 'y', 'dx', 'dy'))
bbox = text_zones.BBox(x, y, x + w, y + h)
zone = text_zones.Zone(const.TEXT_ZONE_CHARACTER, bbox, [text])
stack[-1] += [zone]
else:
raise errors.MalformedOcrOutput('unexpected <{tag}>'.format(tag=element.tag.encode('ASCII', 'unicode-escape')))
raise errors.MalformedOcrOutput('<page> not found')
class Engine(common.Engine):
name = 'gocr'
image_format = image_io.PNM
executable = utils.property('gocr')
extra_args = utils.property([], shlex.split)
def __init__(self, *args, **kwargs):
common.Engine.__init__(self, *args, **kwargs)
self._check_version()
def _check_version(self):
try:
gocr = ipc.Subprocess([self.executable],
stdout=ipc.PIPE,
stderr=ipc.PIPE,
)
except OSError:
raise errors.EngineNotFound(Engine.name)
try:
line = gocr.stderr.read()
m = _version_re.search(line)
if not m:
raise errors.EngineNotFound(Engine.name)
version = tuple(map(int, m.groups()))
if version >= (0, 40):
return
else:
raise errors.EngineNotFound(Engine.name)
finally:
gocr.wait()
@classmethod
def get_default_language(cls):
return _default_language
def check_language(self, language):
if not _language_pattern.match(language):
raise errors.InvalidLanguageId(language)
if language != _default_language:
raise errors.MissingLanguagePack(language)
def list_languages(self):
yield _default_language
def recognize(self, image, language, details=None, uax29=None):
worker = ipc.Subprocess(
[self.executable, '-i', image.name, '-f', 'XML'] + self.extra_args,
stdout=ipc.PIPE,
)
try:
return common.Output(
worker.stdout.read(),
format='gocr.xml',
)
finally:
worker.wait()
def extract_text(self, stream, **kwargs):
settings = ExtractSettings(**kwargs)
stream = etree.iterparse(stream)
scan_result = scan(stream, settings)
return [scan_result.sexpr]
# vim:ts=4 sts=4 sw=4 et
|