doc_analyze_by_custom_model.py 2.92 KB
Newer Older
1
2
import time

赵小蒙's avatar
赵小蒙 committed
3
4
import fitz
import numpy as np
5
from loguru import logger
6
from magic_pdf.model.model_list import MODEL
7
import magic_pdf.model as model_config
赵小蒙's avatar
赵小蒙 committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


def dict_compare(d1, d2):
    return d1.items() == d2.items()


def remove_duplicates_dicts(lst):
    unique_dicts = []
    for dict_item in lst:
        if not any(
                dict_compare(dict_item, existing_dict) for existing_dict in unique_dicts
        ):
            unique_dicts.append(dict_item)
    return unique_dicts


def load_images_from_pdf(pdf_bytes: bytes, dpi=200) -> list:
25
26
27
    try:
        from PIL import Image
    except ImportError:
赵小蒙's avatar
update:  
赵小蒙 committed
28
29
30
        logger.error("Pillow not installed, please install by pip.")
        exit(1)

赵小蒙's avatar
赵小蒙 committed
31
32
33
34
35
36
37
    images = []
    with fitz.open("pdf", pdf_bytes) as doc:
        for index in range(0, doc.page_count):
            page = doc[index]
            mat = fitz.Matrix(dpi / 72, dpi / 72)
            pm = page.get_pixmap(matrix=mat, alpha=False)

赵小蒙's avatar
update:  
赵小蒙 committed
38
            # if width or height > 3000 pixels, don't enlarge the image
39
40
            if pm.width > 3000 or pm.height > 3000:
                pm = page.get_pixmap(matrix=fitz.Matrix(1, 1), alpha=False)
赵小蒙's avatar
赵小蒙 committed
41

赵小蒙's avatar
update:  
赵小蒙 committed
42
43
            img = Image.frombytes("RGB", (pm.width, pm.height), pm.samples)
            img = np.array(img)
赵小蒙's avatar
赵小蒙 committed
44
45
46
47
48
            img_dict = {"img": img, "width": pm.width, "height": pm.height}
            images.append(img_dict)
    return images


49
50
51
52
53
54
55
56
def doc_analyze(pdf_bytes: bytes, ocr: bool = False, show_log: bool = False):
    model = None

    if model_config.__model_mode__ == "lite":
        model = MODEL.Paddle
    elif model_config.__model_mode__ == "full":
        model = MODEL.PEK

57
    if model_config.__use_inside_model__:
58
        model_init_start = time.time()
59
60
61
62
63
64
65
66
67
        if model == MODEL.Paddle:
            from magic_pdf.model.pp_structure_v2 import CustomPaddleModel
            custom_model = CustomPaddleModel(ocr=ocr, show_log=show_log)
        elif model == MODEL.PEK:
            from magic_pdf.model.pdf_extract_kit import CustomPEKModel
            custom_model = CustomPEKModel(ocr=ocr, show_log=show_log)
        else:
            logger.error("Not allow model_name!")
            exit(1)
68
69
        model_init_cost = time.time() - model_init_start
        logger.info(f"model init cost: {model_init_cost}")
70
71
72
73
    else:
        logger.error("use_inside_model is False, not allow to use inside model")
        exit(1)

赵小蒙's avatar
赵小蒙 committed
74
75
    images = load_images_from_pdf(pdf_bytes)

76
    model_json = []
77
78
79
80
81
82
83
84
85
86
87
    doc_analyze_start = time.time()
    for index, img_dict in enumerate(images):
        img = img_dict["img"]
        page_width = img_dict["width"]
        page_height = img_dict["height"]
        result = custom_model(img)
        page_info = {"page_no": index, "height": page_height, "width": page_width}
        page_dict = {"layout_dets": result, "page_info": page_info}
        model_json.append(page_dict)
    doc_analyze_cost = time.time() - doc_analyze_start
    logger.info(f"doc analyze cost: {doc_analyze_cost}")
赵小蒙's avatar
update:  
赵小蒙 committed
88

赵小蒙's avatar
赵小蒙 committed
89
    return model_json