Spaces:
Runtime error
Runtime error
Commit
·
e503841
1
Parent(s):
0c6cfc6
Update app.py
Browse files
app.py
CHANGED
@@ -24,30 +24,30 @@ def draw_boxes(image, bounds, color='yellow', width=2):
|
|
24 |
def inference(img, lang):
|
25 |
reader = easyocr.Reader(lang)
|
26 |
bounds = reader.readtext(img.name)
|
27 |
-
im = PIL.Image.open(img.name)
|
28 |
-
draw_boxes(im, bounds)
|
29 |
-
im.save('result.jpg')
|
30 |
-
print(pd.DataFrame(bounds).iloc[: , 1:2].to_string)
|
31 |
-
return
|
32 |
|
33 |
|
34 |
-
title = 'EasyOCR'
|
35 |
-
description = 'Gradio demo for EasyOCR. EasyOCR demo supports 80+ languages.To use it, simply upload your image and choose a language from the dropdown menu, or click one of the examples to load them. Read more at the links below.'
|
36 |
-
article = "<p style='text-align: center'><a href='https://www.jaided.ai/easyocr/'>Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.</a> | <a href='https://github.com/JaidedAI/EasyOCR'>Github Repo</a></p>"
|
37 |
-
examples = [['english.png',['en']],['thai.jpg',['th']],['french.jpg',['fr', 'en']],['chinese.jpg',['ch_sim', 'en']],['japanese.jpg',['ja', 'en']],['korean.png',['ko', 'en']],['Hindi.jpeg',['hi', 'en']]]
|
38 |
-
css = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
|
39 |
-
choices = [
|
40 |
-
|
41 |
-
|
42 |
-
]
|
43 |
gr.Interface(
|
44 |
-
inference
|
45 |
-
[gr.inputs.Image(type='file', label='Input'),gr.inputs.CheckboxGroup(choices, type="value", default=['en'], label='language')],
|
46 |
-
[gr.outputs.Image(type='file', label='Output'), gr.outputs.Textbox(type='str')],
|
47 |
-
title=title,
|
48 |
-
description=description,
|
49 |
-
article=article,
|
50 |
-
examples=examples,
|
51 |
-
css=css,
|
52 |
-
enable_queue=True
|
53 |
-
).launch(
|
|
|
24 |
def inference(img, lang):
|
25 |
reader = easyocr.Reader(lang)
|
26 |
bounds = reader.readtext(img.name)
|
27 |
+
# im = PIL.Image.open(img.name)
|
28 |
+
# draw_boxes(im, bounds)
|
29 |
+
# im.save('result.jpg')
|
30 |
+
# print(pd.DataFrame(bounds).iloc[: , 1:2].to_string)
|
31 |
+
return pd.DataFrame(bounds).iloc[: , 1:2].to_string(header=False, index=False)
|
32 |
|
33 |
|
34 |
+
# title = 'EasyOCR'
|
35 |
+
# description = 'Gradio demo for EasyOCR. EasyOCR demo supports 80+ languages.To use it, simply upload your image and choose a language from the dropdown menu, or click one of the examples to load them. Read more at the links below.'
|
36 |
+
# article = "<p style='text-align: center'><a href='https://www.jaided.ai/easyocr/'>Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.</a> | <a href='https://github.com/JaidedAI/EasyOCR'>Github Repo</a></p>"
|
37 |
+
# examples = [['english.png',['en']],['thai.jpg',['th']],['french.jpg',['fr', 'en']],['chinese.jpg',['ch_sim', 'en']],['japanese.jpg',['ja', 'en']],['korean.png',['ko', 'en']],['Hindi.jpeg',['hi', 'en']]]
|
38 |
+
# css = ".output_image, .input_image {height: 40rem !important; width: 100% !important;}"
|
39 |
+
# choices = [
|
40 |
+
# "en",
|
41 |
+
# "fr"
|
42 |
+
# ]
|
43 |
gr.Interface(
|
44 |
+
inference
|
45 |
+
# [gr.inputs.Image(type='file', label='Input'),gr.inputs.CheckboxGroup(choices, type="value", default=['en'], label='language')],
|
46 |
+
# [gr.outputs.Image(type='file', label='Output'), gr.outputs.Textbox(type='str')],
|
47 |
+
# title=title,
|
48 |
+
# description=description,
|
49 |
+
# article=article,
|
50 |
+
# examples=examples,
|
51 |
+
# css=css,
|
52 |
+
# enable_queue=True
|
53 |
+
).launch()
|