remove_bbox_overlap.py 1.5 KB
Newer Older
许瑞's avatar
许瑞 committed
1
2
3
4
5
6
7
from magic_pdf.libs.boxbase import _is_in_or_part_overlap, _is_in


def _remove_overlap_between_bbox(spans):
    res = []
    for v in spans:
        for i in range(len(res)):
8
            if _is_in(res[i]["bbox"], v["bbox"]) or _is_in(v["bbox"], res[i]["bbox"]):
许瑞's avatar
许瑞 committed
9
10
11
12
13
14
15
16
                continue
            if _is_in_or_part_overlap(res[i]["bbox"], v["bbox"]):
                ix0, iy0, ix1, iy1 = res[i]["bbox"]
                x0, y0, x1, y1 = v["bbox"]

                diff_x = min(x1, ix1) - max(x0, ix0)
                diff_y = min(y1, iy1) - max(y0, iy0)

许瑞's avatar
许瑞 committed
17
                if diff_y > diff_x:
许瑞's avatar
许瑞 committed
18
19
                    if x1 >= ix1:
                        mid = (x0 + ix1) // 2
20
21
                        ix1 = min(mid - 0.25, ix1)
                        x0 = max(mid + 0.25, x0)
许瑞's avatar
许瑞 committed
22
23
                    else:
                        mid = (ix0 + x1) // 2
24
25
                        ix0 = max(mid + 0.25, ix0)
                        x1 = min(mid -0.25, x1)
许瑞's avatar
许瑞 committed
26
27
28
                else:
                    if y1 >= iy1:
                        mid = (y0 + iy1) // 2
29
30
                        y0 = max(mid + 0.25, y0)
                        iy1 = min(iy1, mid-0.25)
许瑞's avatar
许瑞 committed
31
32
                    else:
                        mid = (iy0 + y1) // 2
33
34
                        y1 = min(y1, mid-0.25)
                        iy0 = max(mid + 0.25, iy0)
许瑞's avatar
许瑞 committed
35
36
37
38
39
40
41
42
43
                res[i]["bbox"] = [ix0, iy0, ix1, iy1]
                v["bbox"] = [x0, y0, x1, y1]

        res.append(v)
    return res


def remove_overlap_between_bbox(spans):
    return _remove_overlap_between_bbox(spans)