-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.py
156 lines (127 loc) · 4.48 KB
/
app.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
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
import argparse
import flask
import paddleocr.paddleocr
from paddleocr.paddleocr import PaddleOCR
from flask import Flask, request, jsonify
from traceback import print_exc
import json
import uuid
# 2.3版本可用
paddleocr.paddleocr.BASE_DIR = "./"
japOcr = PaddleOCR(use_angle_cls=False, use_gpu=False, lang="japan", enable_mkldnn=True)
engOcr = PaddleOCR(use_angle_cls=False, use_gpu=False, lang="en", enable_mkldnn=True)
korOcr = PaddleOCR(use_angle_cls=False, use_gpu=False, lang="korean", enable_mkldnn=True)
ruOcr = PaddleOCR(use_angle_cls=False, use_gpu=False, lang="ru", enable_mkldnn=True)
zhOcr = PaddleOCR(use_angle_cls=False, use_gpu=False, lang="ch", enable_mkldnn=True)
app = Flask(__name__)
app.config['JSON_AS_ASCII'] = False
# 失败的返回
def jsonFail(message):
post_data = {
"Code": -1,
"Message": str(message),
"RequestId": str(uuid.uuid4())
}
return jsonify(post_data)
# 成功的返回
def jsonSuccess(data):
post_data = {
"Code": 0,
"Message": "Success",
"RequestId": str(uuid.uuid4()),
"Data": data
}
return jsonify(post_data)
def ocrResultSort(ocr_result):
ocr_result.sort(key=lambda x: x[0][0][1])
# 二次根据纵坐标数值分组(分行)
all_group = []
new_group = []
flag = ocr_result[0][0][0][1]
pram = max([int((i[0][3][1] - i[0][0][1]) / 2) for i in ocr_result])
for sn, i in enumerate(ocr_result):
if abs(flag - i[0][0][1]) <= pram:
new_group.append(i)
else:
all_group.append(new_group)
flag = i[0][0][1]
new_group = [i]
all_group.append(new_group)
# 单行内部按左上点横坐标排序
all_group = [sorted(i, key=lambda x: x[0][0][0]) for i in all_group]
# 去除分组,归一为大列表
all_group = [ii for i in all_group for ii in i]
# 列表输出为排序后txt
all_group = [ii for ii in all_group]
return all_group
# ocr解析
def ocrProcess(imgPath, language):
if language == "JAP":
result = japOcr.ocr(imgPath, cls=False)
elif language == "ENG":
result = engOcr.ocr(imgPath, cls=False)
elif language == "KOR":
result = korOcr.ocr(imgPath, cls=False)
elif language == "RU":
result = ruOcr.ocr(imgPath, cls=False)
elif language == "ZH":
result = zhOcr.ocr(imgPath, cls=False)
else:
result = japOcr.ocr(imgPath, cls=False)
try:
result = ocrResultSort(result)
except Exception:
pass
resMapList = []
for line in result:
try:
print(line[1][0])
except Exception:
pass
resMap = {
"Coordinate": {
"UpperLeft": line[0][0],
"UpperRight": line[0][1],
"LowerRight": line[0][2],
"LowerLeft": line[0][3]
},
"Words": line[1][0],
"Score": float(line[1][1])
}
resMapList.append(resMap)
print()
return resMapList
# 接收请求
def handle_request():
# 客户端检测是否运行
if request.method == "HEAD":
return flask.Response(headers={
"Dango-OCR": "OK",
})
try:
post_data = request.get_data()
post_data = json.loads(post_data.decode("utf-8"))
languageList = ["JAP", "ENG", "KOR", "RU", "ZH"]
if post_data["Language"] not in languageList:
return jsonFail("Language {} doesn't exist".format(post_data["Language"]))
res = ocrProcess(post_data["ImagePath"], post_data["Language"])
return jsonSuccess(res)
except Exception as err:
print_exc()
return jsonFail(err)
if __name__ == "__main__":
host = "127.0.0.1"
port = 6666
path = "/ocr/api"
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument("-h", "--host", type=str, default=host, help="监听的主机。默认:\"%s\"" % host)
parser.add_argument("-p", "--port", type=int, default=port, help="监听的端口。默认:%d" % port)
parser.add_argument("-P", "--path", type=str, default=path, help="监听的路径。默认:\"%s\"" % path)
parser.add_argument('--help', action='help', help='打印帮助。')
args = parser.parse_args()
host = args.host
port = args.port
path = args.path
print("监听:http://%s:%d%s" % (host, port, path))
app.add_url_rule(path, view_func=handle_request, methods=["POST", "HEAD"])
app.run(debug=False, host=host, port=port, threaded=False)