sneedium commited on
Commit
0ffe2fb
·
1 Parent(s): 0635955

Create new file

Browse files
Files changed (1) hide show
  1. app.py +43 -0
app.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ os.system('pip install paddlepaddle')
3
+ os.system('pip install paddleocr')
4
+ from paddleocr import PaddleOCR, draw_ocr
5
+ from PIL import Image
6
+ import gradio as gr
7
+ import torch
8
+
9
+ torch.hub.download_url_to_file('https://i.imgur.com/aqMBT0i.jpg', 'example.jpg')
10
+
11
+ ocr = PaddleOCR(use_angle_cls=True, lang=lang,use_gpu=False)
12
+
13
+ def inference(img, lang):
14
+ img_path = img.name
15
+ result = ocr.ocr(img_path, cls=True)
16
+ image = Image.open(img_path).convert('RGB')
17
+ boxes = [line[0] for line in result]
18
+ txts = [line[1][0] for line in result]
19
+ scores = [line[1][1] for line in result]
20
+ im_show = draw_ocr(image, boxes, txts, scores,
21
+ font_path='simfang.ttf')
22
+ im_show = Image.fromarray(im_show)
23
+ im_show.save('result.jpg')
24
+ return 'result.jpg'
25
+
26
+ title = 'PaddleOCR'
27
+ description = 'Gradio demo for PaddleOCR. PaddleOCR demo supports Chinese, English, French, German, Korean and Japanese.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.'
28
+ article = "<p style='text-align: center'><a href='https://www.paddlepaddle.org.cn/hub/scene/ocr'>Awesome multilingual OCR toolkits based on PaddlePaddle (practical ultra lightweight OCR system, support 80+ languages recognition, provide data annotation and synthesis tools, support training and deployment among server, mobile, embedded and IoT devices)</a> | <a href='https://github.com/PaddlePaddle/PaddleOCR'>Github Repo</a></p>"
29
+ examples = [['example.jpg','en']]
30
+ gr.Interface(
31
+ inference,
32
+ [gr.inputs.Image(type='file', label='Input'),gr.inputs.Dropdown(choices=['ch', 'en', 'fr', 'german', 'korean', 'japan'], type="value", default='en', label='language')],
33
+ gr.outputs.Image(type='file', label='Output'),
34
+ title=title,
35
+ description=description,
36
+ article=article,
37
+ examples=examples
38
+ ).launch()
39
+
40
+
41
+
42
+
43
+