ocr_mkcontent.py 18.1 KB
Newer Older
1
2
3
import re

import wordninja
赵小蒙's avatar
赵小蒙 committed
4
5
from loguru import logger

6
from magic_pdf.libs.commons import join_path
7
from magic_pdf.libs.language import detect_lang
8
from magic_pdf.libs.MakeContentConfig import DropMode, MakeMode
赵小蒙's avatar
赵小蒙 committed
9
from magic_pdf.libs.markdown_utils import ocr_escape_special_markdown_char
10
from magic_pdf.libs.ocr_content_type import BlockType, ContentType
11
12


13
14
15
16
17
18
19
20
21
22
23
24
25
26
def __is_hyphen_at_line_end(line):
    """
    Check if a line ends with one or more letters followed by a hyphen.
    
    Args:
    line (str): The line of text to check.
    
    Returns:
    bool: True if the line ends with one or more letters followed by a hyphen, False otherwise.
    """
    # Use regex to check if the line ends with one or more letters followed by a hyphen
    return bool(re.search(r'[A-Za-z]+-\s*$', line))


27
28
29
def split_long_words(text):
    segments = text.split(' ')
    for i in range(len(segments)):
liukaiwen's avatar
liukaiwen committed
30
        words = re.findall(r'\w+|[^\w]', segments[i], re.UNICODE)
31
        for j in range(len(words)):
32
            if len(words[j]) > 10:
33
34
35
                words[j] = ' '.join(wordninja.split(words[j]))
        segments[i] = ''.join(words)
    return ' '.join(segments)
赵小蒙's avatar
赵小蒙 committed
36
37


赵小蒙's avatar
赵小蒙 committed
38
def ocr_mk_mm_markdown_with_para(pdf_info_list: list, img_buket_path):
xuchao's avatar
xuchao committed
39
    markdown = []
赵小蒙's avatar
赵小蒙 committed
40
    for page_info in pdf_info_list:
41
42
43
        paras_of_layout = page_info.get('para_blocks')
        page_markdown = ocr_mk_markdown_with_para_core_v2(
            paras_of_layout, 'mm', img_buket_path)
44
        markdown.extend(page_markdown)
45
    return '\n\n'.join(markdown)
46
47


赵小蒙's avatar
赵小蒙 committed
48
def ocr_mk_nlp_markdown_with_para(pdf_info_dict: list):
49
    markdown = []
赵小蒙's avatar
赵小蒙 committed
50
    for page_info in pdf_info_dict:
51
52
53
        paras_of_layout = page_info.get('para_blocks')
        page_markdown = ocr_mk_markdown_with_para_core_v2(
            paras_of_layout, 'nlp')
54
55
56
        markdown.extend(page_markdown)
    return '\n\n'.join(markdown)

赵小蒙's avatar
赵小蒙 committed
57

58
59
def ocr_mk_mm_markdown_with_para_and_pagination(pdf_info_dict: list,
                                                img_buket_path):
60
    markdown_with_para_and_pagination = []
赵小蒙's avatar
赵小蒙 committed
61
62
    page_no = 0
    for page_info in pdf_info_dict:
63
        paras_of_layout = page_info.get('para_blocks')
64
        if not paras_of_layout:
65
            continue
66
67
        page_markdown = ocr_mk_markdown_with_para_core_v2(
            paras_of_layout, 'mm', img_buket_path)
68
        markdown_with_para_and_pagination.append({
69
70
71
72
            'page_no':
            page_no,
            'md_content':
            '\n\n'.join(page_markdown)
73
        })
赵小蒙's avatar
赵小蒙 committed
74
        page_no += 1
75
76
77
    return markdown_with_para_and_pagination


78
def ocr_mk_markdown_with_para_core(paras_of_layout, mode, img_buket_path=''):
79
80
81
82
83
84
85
    page_markdown = []
    for paras in paras_of_layout:
        for para in paras:
            para_text = ''
            for line in para:
                for span in line['spans']:
                    span_type = span.get('type')
86
                    content = ''
87
                    language = ''
88
                    if span_type == ContentType.Text:
89
90
                        content = span['content']
                        language = detect_lang(content)
91
92
93
                        if (language == 'en'):  # 只对英文长词进行分词处理,中文分词会丢失文本
                            content = ocr_escape_special_markdown_char(
                                split_long_words(content))
94
95
                        else:
                            content = ocr_escape_special_markdown_char(content)
96
                    elif span_type == ContentType.InlineEquation:
97
                        content = f"${span['content']}$"
98
                    elif span_type == ContentType.InterlineEquation:
99
                        content = f"\n$$\n{span['content']}\n$$\n"
100
                    elif span_type in [ContentType.Image, ContentType.Table]:
101
                        if mode == 'mm':
赵小蒙's avatar
赵小蒙 committed
102
                            content = f"\n![]({join_path(img_buket_path, span['image_path'])})\n"
103
104
                        elif mode == 'nlp':
                            pass
105
                    if content != '':
106
107
108
109
                        if language == 'en':  # 英文语境下 content间需要空格分隔
                            para_text += content + ' '
                        else:  # 中文语境下,content间不需要空格分隔
                            para_text += content
110
111
112
113
            if para_text.strip() == '':
                continue
            else:
                page_markdown.append(para_text.strip() + '  ')
114
115
116
    return page_markdown


117
118
119
def ocr_mk_markdown_with_para_core_v2(paras_of_layout,
                                      mode,
                                      img_buket_path=''):
赵小蒙's avatar
赵小蒙 committed
120
    page_markdown = []
121
    for para_block in paras_of_layout:
赵小蒙's avatar
赵小蒙 committed
122
        para_text = ''
赵小蒙's avatar
赵小蒙 committed
123
        para_type = para_block['type']
124
125
126
        if para_type == BlockType.Text:
            para_text = merge_para_with_text(para_block)
        elif para_type == BlockType.Title:
127
            para_text = f'# {merge_para_with_text(para_block)}'
128
129
130
131
        elif para_type == BlockType.InterlineEquation:
            para_text = merge_para_with_text(para_block)
        elif para_type == BlockType.Image:
            if mode == 'nlp':
赵小蒙's avatar
赵小蒙 committed
132
                continue
133
            elif mode == 'mm':
赵小蒙's avatar
赵小蒙 committed
134
                for block in para_block['blocks']:  # 1st.拼image_body
赵小蒙's avatar
赵小蒙 committed
135
136
                    if block['type'] == BlockType.ImageBody:
                        for line in block['lines']:
137
                            for span in line['spans']:
赵小蒙's avatar
赵小蒙 committed
138
                                if span['type'] == ContentType.Image:
139
                                    para_text += f"\n![]({join_path(img_buket_path, span['image_path'])})  \n"
赵小蒙's avatar
赵小蒙 committed
140
                for block in para_block['blocks']:  # 2nd.拼image_caption
赵小蒙's avatar
赵小蒙 committed
141
142
                    if block['type'] == BlockType.ImageCaption:
                        para_text += merge_para_with_text(block)
143
144
145
                for block in para_block['blocks']:  # 2nd.拼image_caption
                    if block['type'] == BlockType.ImageFootnote:
                        para_text += merge_para_with_text(block)
146
147
148
149
        elif para_type == BlockType.Table:
            if mode == 'nlp':
                continue
            elif mode == 'mm':
赵小蒙's avatar
赵小蒙 committed
150
151
                for block in para_block['blocks']:  # 1st.拼table_caption
                    if block['type'] == BlockType.TableCaption:
152
                        para_text += merge_para_with_text(block)
赵小蒙's avatar
赵小蒙 committed
153
                for block in para_block['blocks']:  # 2nd.拼table_body
赵小蒙's avatar
赵小蒙 committed
154
155
                    if block['type'] == BlockType.TableBody:
                        for line in block['lines']:
156
                            for span in line['spans']:
赵小蒙's avatar
赵小蒙 committed
157
                                if span['type'] == ContentType.Table:
158
159
160
                                    # if processed by table model
                                    if span.get('latex', ''):
                                        para_text += f"\n\n$\n {span['latex']}\n$\n\n"
161
162
                                    elif span.get('html', ''):
                                        para_text += f"\n\n{span['html']}\n\n"
163
                                    else:
164
                                        para_text += f"\n![]({join_path(img_buket_path, span['image_path'])})  \n"
赵小蒙's avatar
赵小蒙 committed
165
166
                for block in para_block['blocks']:  # 3rd.拼table_footnote
                    if block['type'] == BlockType.TableFootnote:
赵小蒙's avatar
赵小蒙 committed
167
                        para_text += merge_para_with_text(block)
168
169
170
171
172

        if para_text.strip() == '':
            continue
        else:
            page_markdown.append(para_text.strip() + '  ')
赵小蒙's avatar
赵小蒙 committed
173
174
175
176

    return page_markdown


赵小蒙's avatar
赵小蒙 committed
177
def merge_para_with_text(para_block):
178

179
180
181
182
183
184
185
186
    def detect_language(text):
        en_pattern = r'[a-zA-Z]+'
        en_matches = re.findall(en_pattern, text)
        en_length = sum(len(match) for match in en_matches)
        if len(text) > 0:
            if en_length / len(text) >= 0.5:
                return 'en'
            else:
187
                return 'unknown'
188
        else:
189
            return 'empty'
190

赵小蒙's avatar
赵小蒙 committed
191
    para_text = ''
赵小蒙's avatar
赵小蒙 committed
192
    for line in para_block['lines']:
193
194
        line_text = ''
        line_lang = ''
195
196
197
198
        for span in line['spans']:
            span_type = span['type']
            if span_type == ContentType.Text:
                line_text += span['content'].strip()
199
        if line_text != '':
200
            line_lang = detect_lang(line_text)
赵小蒙's avatar
赵小蒙 committed
201
        for span in line['spans']:
赵小蒙's avatar
赵小蒙 committed
202
            span_type = span['type']
赵小蒙's avatar
赵小蒙 committed
203
204
205
            content = ''
            if span_type == ContentType.Text:
                content = span['content']
206
207
                # language = detect_lang(content)
                language = detect_language(content)
赵小蒙's avatar
赵小蒙 committed
208
                if language == 'en':  # 只对英文长词进行分词处理,中文分词会丢失文本
209
210
                    content = ocr_escape_special_markdown_char(
                        split_long_words(content))
赵小蒙's avatar
赵小蒙 committed
211
212
213
                else:
                    content = ocr_escape_special_markdown_char(content)
            elif span_type == ContentType.InlineEquation:
214
                content = f" ${span['content']}$ "
赵小蒙's avatar
赵小蒙 committed
215
216
            elif span_type == ContentType.InterlineEquation:
                content = f"\n$$\n{span['content']}\n$$\n"
217

赵小蒙's avatar
赵小蒙 committed
218
            if content != '':
219
220
221
                langs = ['zh', 'ja', 'ko']
                if line_lang in langs:  # 遇到一些一个字一个span的文档,这种单字语言判断不准,需要用整行文本判断
                    para_text += content  # 中文/日语/韩文语境下,content间不需要空格分隔
222
223
                elif line_lang == 'en':
                    # 如果是前一行带有-连字符,那么末尾不应该加空格
drunkpig's avatar
drunkpig committed
224
225
                    if __is_hyphen_at_line_end(content):
                        para_text += content[:-1]
226
227
                    else:
                        para_text += content + ' '
228
                else:
229
                    para_text += content + ' '  # 西方文本语境下 content间需要空格分隔
赵小蒙's avatar
赵小蒙 committed
230
231
232
    return para_text


233
def para_to_standard_format(para, img_buket_path):
234
235
    para_content = {}
    if len(para) == 1:
236
        para_content = line_to_standard_format(para[0], img_buket_path)
237
238
239
240
241
    elif len(para) > 1:
        para_text = ''
        inline_equation_num = 0
        for line in para:
            for span in line['spans']:
242
                language = ''
243
                span_type = span.get('type')
244
                content = ''
245
                if span_type == ContentType.Text:
246
247
248
                    content = span['content']
                    language = detect_lang(content)
                    if language == 'en':  # 只对英文长词进行分词处理,中文分词会丢失文本
249
250
                        content = ocr_escape_special_markdown_char(
                            split_long_words(content))
251
252
                    else:
                        content = ocr_escape_special_markdown_char(content)
253
                elif span_type == ContentType.InlineEquation:
254
                    content = f"${span['content']}$"
255
                    inline_equation_num += 1
256
257
258
259
                if language == 'en':  # 英文语境下 content间需要空格分隔
                    para_text += content + ' '
                else:  # 中文语境下,content间不需要空格分隔
                    para_text += content
260
261
262
        para_content = {
            'type': 'text',
            'text': para_text,
263
            'inline_equation_num': inline_equation_num,
264
265
266
        }
    return para_content

赵小蒙's avatar
赵小蒙 committed
267

268
def para_to_standard_format_v2(para_block, img_buket_path, page_idx):
赵小蒙's avatar
赵小蒙 committed
269
270
271
272
273
    para_type = para_block['type']
    if para_type == BlockType.Text:
        para_content = {
            'type': 'text',
            'text': merge_para_with_text(para_block),
274
            'page_idx': page_idx,
赵小蒙's avatar
赵小蒙 committed
275
276
277
278
279
        }
    elif para_type == BlockType.Title:
        para_content = {
            'type': 'text',
            'text': merge_para_with_text(para_block),
280
            'text_level': 1,
281
            'page_idx': page_idx,
赵小蒙's avatar
赵小蒙 committed
282
283
284
285
286
        }
    elif para_type == BlockType.InterlineEquation:
        para_content = {
            'type': 'equation',
            'text': merge_para_with_text(para_block),
287
288
            'text_format': 'latex',
            'page_idx': page_idx,
赵小蒙's avatar
赵小蒙 committed
289
290
        }
    elif para_type == BlockType.Image:
291
        para_content = {'type': 'image', 'page_idx': page_idx}
赵小蒙's avatar
赵小蒙 committed
292
293
        for block in para_block['blocks']:
            if block['type'] == BlockType.ImageBody:
294
295
296
                para_content['img_path'] = join_path(
                    img_buket_path,
                    block['lines'][0]['spans'][0]['image_path'])
赵小蒙's avatar
赵小蒙 committed
297
298
            if block['type'] == BlockType.ImageCaption:
                para_content['img_caption'] = merge_para_with_text(block)
299
300
            if block['type'] == BlockType.ImageFootnote:
                para_content['img_footnote'] = merge_para_with_text(block)
赵小蒙's avatar
赵小蒙 committed
301
    elif para_type == BlockType.Table:
302
        para_content = {'type': 'table', 'page_idx': page_idx}
赵小蒙's avatar
赵小蒙 committed
303
304
        for block in para_block['blocks']:
            if block['type'] == BlockType.TableBody:
305
                if block["lines"][0]["spans"][0].get('latex', ''):
liukaiwen's avatar
liukaiwen committed
306
                    para_content['table_body'] = f"\n\n$\n {block['lines'][0]['spans'][0]['latex']}\n$\n\n"
307
308
                elif block["lines"][0]["spans"][0].get('html', ''):
                    para_content['table_body'] = f"\n\n{block['lines'][0]['spans'][0]['html']}\n\n"
赵小蒙's avatar
赵小蒙 committed
309
310
311
312
313
314
315
316
317
                para_content['img_path'] = join_path(img_buket_path, block["lines"][0]["spans"][0]['image_path'])
            if block['type'] == BlockType.TableCaption:
                para_content['table_caption'] = merge_para_with_text(block)
            if block['type'] == BlockType.TableFootnote:
                para_content['table_footnote'] = merge_para_with_text(block)

    return para_content


赵小蒙's avatar
赵小蒙 committed
318
def make_standard_format_with_para(pdf_info_dict: list, img_buket_path: str):
赵小蒙's avatar
赵小蒙 committed
319
    content_list = []
赵小蒙's avatar
赵小蒙 committed
320
    for page_info in pdf_info_dict:
321
        paras_of_layout = page_info.get('para_blocks')
322
        if not paras_of_layout:
赵小蒙's avatar
赵小蒙 committed
323
            continue
赵小蒙's avatar
赵小蒙 committed
324
        for para_block in paras_of_layout:
325
326
            para_content = para_to_standard_format_v2(para_block,
                                                      img_buket_path)
赵小蒙's avatar
赵小蒙 committed
327
            content_list.append(para_content)
赵小蒙's avatar
赵小蒙 committed
328
329
330
    return content_list


331
def line_to_standard_format(line, img_buket_path):
332
    line_text = ''
赵小蒙's avatar
赵小蒙 committed
333
334
335
336
337
338
339
340
341
    inline_equation_num = 0
    for span in line['spans']:
        if not span.get('content'):
            if not span.get('image_path'):
                continue
            else:
                if span['type'] == ContentType.Image:
                    content = {
                        'type': 'image',
342
343
                        'img_path': join_path(img_buket_path,
                                              span['image_path']),
赵小蒙's avatar
赵小蒙 committed
344
345
346
347
348
                    }
                    return content
                elif span['type'] == ContentType.Table:
                    content = {
                        'type': 'table',
349
350
                        'img_path': join_path(img_buket_path,
                                              span['image_path']),
赵小蒙's avatar
赵小蒙 committed
351
352
353
354
                    }
                    return content
        else:
            if span['type'] == ContentType.InterlineEquation:
赵小蒙's avatar
赵小蒙 committed
355
                interline_equation = span['content']
赵小蒙's avatar
赵小蒙 committed
356
357
                content = {
                    'type': 'equation',
358
                    'latex': f'$$\n{interline_equation}\n$$'
赵小蒙's avatar
赵小蒙 committed
359
360
361
                }
                return content
            elif span['type'] == ContentType.InlineEquation:
赵小蒙's avatar
赵小蒙 committed
362
                inline_equation = span['content']
363
                line_text += f'${inline_equation}$'
赵小蒙's avatar
赵小蒙 committed
364
365
                inline_equation_num += 1
            elif span['type'] == ContentType.Text:
366
367
                text_content = ocr_escape_special_markdown_char(
                    span['content'])  # 转义特殊符号
368
                line_text += text_content
赵小蒙's avatar
赵小蒙 committed
369
370
371
    content = {
        'type': 'text',
        'text': line_text,
372
        'inline_equation_num': inline_equation_num,
赵小蒙's avatar
赵小蒙 committed
373
374
375
376
    }
    return content


赵小蒙's avatar
赵小蒙 committed
377
def ocr_mk_mm_standard_format(pdf_info_dict: list):
378
379
380
381
    """content_list type         string
    image/text/table/equation(行间的单独拿出来,行内的和text合并) latex        string
    latex文本字段。 text         string      纯文本格式的文本数据。 md           string
    markdown格式的文本数据。 img_path     string      s3://full/path/to/img.jpg."""
赵小蒙's avatar
赵小蒙 committed
382
    content_list = []
赵小蒙's avatar
赵小蒙 committed
383
    for page_info in pdf_info_dict:
384
        blocks = page_info.get('preproc_blocks')
赵小蒙's avatar
赵小蒙 committed
385
386
387
388
389
390
391
        if not blocks:
            continue
        for block in blocks:
            for line in block['lines']:
                content = line_to_standard_format(line)
                content_list.append(content)
    return content_list
赵小蒙's avatar
赵小蒙 committed
392
393


394
395
396
397
def union_make(pdf_info_dict: list,
               make_mode: str,
               drop_mode: str,
               img_buket_path: str = ''):
赵小蒙's avatar
赵小蒙 committed
398
399
    output_content = []
    for page_info in pdf_info_dict:
400
401
        if page_info.get('need_drop', False):
            drop_reason = page_info.get('drop_reason')
赵小蒙's avatar
赵小蒙 committed
402
403
404
            if drop_mode == DropMode.NONE:
                pass
            elif drop_mode == DropMode.WHOLE_PDF:
405
406
                raise Exception((f'drop_mode is {DropMode.WHOLE_PDF} ,'
                                 f'drop_reason is {drop_reason}'))
赵小蒙's avatar
赵小蒙 committed
407
            elif drop_mode == DropMode.SINGLE_PAGE:
408
409
                logger.warning((f'drop_mode is {DropMode.SINGLE_PAGE} ,'
                                f'drop_reason is {drop_reason}'))
赵小蒙's avatar
赵小蒙 committed
410
411
                continue
            else:
412
                raise Exception('drop_mode can not be null')
赵小蒙's avatar
赵小蒙 committed
413

414
415
        paras_of_layout = page_info.get('para_blocks')
        page_idx = page_info.get('page_idx')
赵小蒙's avatar
赵小蒙 committed
416
417
418
        if not paras_of_layout:
            continue
        if make_mode == MakeMode.MM_MD:
419
420
            page_markdown = ocr_mk_markdown_with_para_core_v2(
                paras_of_layout, 'mm', img_buket_path)
赵小蒙's avatar
赵小蒙 committed
421
422
            output_content.extend(page_markdown)
        elif make_mode == MakeMode.NLP_MD:
423
424
            page_markdown = ocr_mk_markdown_with_para_core_v2(
                paras_of_layout, 'nlp')
赵小蒙's avatar
赵小蒙 committed
425
426
427
            output_content.extend(page_markdown)
        elif make_mode == MakeMode.STANDARD_FORMAT:
            for para_block in paras_of_layout:
428
429
                para_content = para_to_standard_format_v2(
                    para_block, img_buket_path, page_idx)
赵小蒙's avatar
赵小蒙 committed
430
431
432
433
434
                output_content.append(para_content)
    if make_mode in [MakeMode.MM_MD, MakeMode.NLP_MD]:
        return '\n\n'.join(output_content)
    elif make_mode == MakeMode.STANDARD_FORMAT:
        return output_content