-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy pathtest_pix2text.py
More file actions
255 lines (221 loc) · 7.86 KB
/
test_pix2text.py
File metadata and controls
255 lines (221 loc) · 7.86 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
# coding: utf-8
import os
from pix2text import Pix2Text, set_logger
set_logger()
def test_recognize_pdf():
pdf_fn = '1804.07821'
img_fp = f'./docs/examples/{pdf_fn}.pdf'
text_formula_config = dict(
languages=('en', 'ch_sim'),
mfd=dict( # 声明 MFD 的初始化参数
model_path=os.path.expanduser(
'~/.pix2text/1.1/mfd-onnx/mfd-v20240618.onnx'
), # 注:修改成你的模型文件所存储的路径
),
formula=dict(
model_name='mfr-pro',
model_backend='onnx',
model_dir=os.path.expanduser(
'~/.pix2text/1.1/mfr-pro-onnx'
), # 注:修改成你的模型文件所存储的路径
),
text=dict(
rec_model_name='doc-densenet_lite_666-gru_large',
rec_model_backend='onnx',
rec_model_fp=os.path.expanduser(
'~/.cnocr/2.3/doc-densenet_lite_666-gru_large/cnocr-v2.3-doc-densenet_lite_666-gru_large-epoch=005-ft-model.onnx'
# noqa
), # 注:修改成你的模型文件所存储的路径
),
)
total_config = {
'layout': {},
'text_formula': text_formula_config,
}
p2t = Pix2Text.from_config(total_configs=total_config, enable_formula=True)
out_md = p2t.recognize_pdf(
img_fp,
page_numbers=[0, 7, 8],
table_as_image=True,
save_debug_res=f'./outputs-{pdf_fn}',
)
out_md.to_markdown('page-output')
# print(out_page)
# out_page.to_markdown('page-output')
def test_recognize_page():
# img_fp = './docs/examples/formula.jpg'
img_fp = './docs/examples/page2.png'
# img_fp = './docs/examples/mixed.jpg'
total_config = {
'layout': {},
'text_formula': {
'formula': {
'model_name': 'mfr-1.5',
'model_backend': 'onnx',
'more_model_configs': {'provider': 'CPUExecutionProvider'},
}
},
}
p2t = Pix2Text.from_config(total_configs=total_config)
out_page = p2t.recognize_page(
img_fp,
page_id='test_page_1',
title_contain_formula=False,
text_contain_formula=True,
save_debug_res='./outputs',
)
# print(out_page)
out_page.to_markdown('page-output')
def test_spell_checker():
from spellchecker import SpellChecker
spell = SpellChecker()
# 找到拼写错误
misspelled = spell.unknown(["speci-fied"])
for word in misspelled:
# Get the one `most likely` answer
print('word:', word, ' ->', spell.correction(word))
# Get a list of `likely` options
print('suggestions:', spell.candidates(word))
def test_blog_example():
img_fp = './docs/examples/mixed.jpg'
text_formula_config = dict(
mfd=dict( # 声明 MFD 的初始化参数
model_path=os.path.expanduser(
'~/.pix2text/1.1/mfd-onnx/mfd-v20240618.onnx'
), # 注:修改成你的模型文件所存储的路径
),
formula=dict(
model_name='mfr-pro',
model_backend='onnx',
model_dir=os.path.expanduser(
'~/.pix2text/1.1/mfr-pro-onnx'
), # 注:修改成你的模型文件所存储的路径
),
)
total_config = {
'layout': {'scores_thresh': 0.2},
'text_formula': text_formula_config,
}
p2t = Pix2Text.from_config(total_configs=total_config)
outs = p2t.recognize_page(
img_fp,
resized_shape=608,
page_id='test_page_2',
save_layout_res='./layout_res-mixed.jpg',
) # 也可以使用 `p2t(img_fp)` 获得相同的结果
print(outs)
def test_blog_pro_example():
img_fp = './docs/examples/mixed.jpg'
text_formula_config = dict(
languages=('en', 'ch_sim'),
mfd=dict( # 声明 MFD 的初始化参数
model_path=os.path.expanduser(
'~/.pix2text/1.1/mfd-onnx/mfd-v20240618.onnx'
), # 注:修改成你的模型文件所存储的路径
),
formula=dict(
model_name='mfr-pro',
model_backend='onnx',
model_dir=os.path.expanduser(
'~/.pix2text/1.1/mfr-pro-onnx'
), # 注:修改成你的模型文件所存储的路径
),
text=dict(
rec_model_name='doc-densenet_lite_666-gru_large',
rec_model_backend='onnx',
rec_model_fp=os.path.expanduser(
'~/.cnocr/2.3/doc-densenet_lite_666-gru_large/cnocr-v2.3-doc-densenet_lite_666-gru_large-epoch=005-ft-model.onnx'
# noqa
), # 注:修改成你的模型文件所存储的路径
),
)
p2t = Pix2Text.from_config(total_configs={'text_formula': text_formula_config})
outs = p2t.recognize_page(
img_fp, resized_shape=608, page_id='test_page_3'
) # 也可以使用 `p2t(img_fp)` 获得相同的结果
print(outs)
def test_example_mixed():
img_fp = './docs/examples/en1.jpg'
p2t = Pix2Text.from_config()
outs = p2t.recognize_page(
img_fp, resized_shape=608, page_id='test_page_4'
) # 也可以使用 `p2t(img_fp)` 获得相同的结果
print(outs)
def test_example_formula():
img_fp = './docs/examples/math-formula-42.png'
p2t = Pix2Text.from_config()
outs = p2t.recognize_formula(img_fp)
print(outs)
def test_example_text():
img_fp = './docs/examples/general.jpg'
p2t = Pix2Text(enable_formula=False)
outs = p2t.recognize_text(img_fp)
print(outs)
def test_vlm_recognize_page():
import dotenv
dotenv.load_dotenv()
model_name=os.getenv("GEMINI_MODEL")
api_key=os.getenv("GEMINI_API_KEY")
# img_fp = './docs/examples/formula.jpg'
# img_fp = './docs/examples/page2.png'
img_fp = './docs/examples/mixed.jpg'
total_config = {
'layout': None,
'text_formula': {
"model_type": "VlmTextFormulaOCR",
"model_name": model_name,
"api_key": api_key,
},
"table": {
"model_type": "VlmTableOCR",
"model_name": model_name,
"api_key": api_key,
},
}
p2t = Pix2Text.from_config(total_configs=total_config)
tf_out = p2t.recognize_text_formula(img=img_fp, resized_shape=768, return_text=False)
print(tf_out)
# out_page = p2t.recognize_page(
# img_fp,
# page_id='test_page_1',
# title_contain_formula=False,
# text_contain_formula=True,
# save_debug_res='./outputs',
# )
# print(out_page)
# out_page.to_markdown('page-output')
def test_multilingual_ocr():
img_fp = 'docs/examples/vietnamese.jpg'
img_fp = 'docs/feedbacks/ru.png'
total_config = {
"layout": {},
"text_formula": {"languages": ("ru",)},
}
p2t = Pix2Text.from_config(total_configs=total_config)
outs = p2t.recognize(
img_fp, file_type="text_formula", return_text=True, auto_line_break=False
)
print(outs)
def test_init_with_total_configs():
"""Test that Pix2Text can be initialized with total_configs directly (same as from_config)."""
total_config = {
'layout': {},
'text_formula': {
'formula': {
'model_name': 'mfr-1.5',
'model_backend': 'onnx',
'more_model_configs': {'provider': 'CPUExecutionProvider'},
}
},
}
# Initialize using total_configs parameter directly
p2t = Pix2Text(total_configs=total_config, enable_table=False, device='cpu')
assert p2t.layout_parser is not None
assert p2t.text_formula_ocr is not None
assert p2t.table_ocr is None # enable_table=False
assert p2t.enable_formula is True # default value
img_fp = './docs/examples/page2.png'
outs = p2t.recognize(
img_fp, file_type="text_formula", return_text=True, auto_line_break=False
)
print(outs)