-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
45 lines (40 loc) · 1.09 KB
/
main.py
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
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'
#
txt = tool.image_to_string(
Image.open('img.jpg'),
lang=lang,
builder=pyocr.builders.TextBuilder()
)
print("Recognized text:\n%s" % txt)
# word_boxes = tool.image_to_string(
# Image.open('test.png'),
# lang="eng",
# builder=pyocr.builders.WordBoxBuilder()
# )
# line_and_word_boxes = tool.image_to_string(
# Image.open('test.png'), lang="fra",
# builder=pyocr.builders.LineBoxBuilder()
# )
#
# # Digits - Only Tesseract (not 'libtesseract' yet !)
# digits = tool.image_to_string(
# Image.open('test-digits.png'),
# lang=lang,
# builder=pyocr.tesseract.DigitBuilder()
# )