Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
MinerU
Commits
2284e0d7
Commit
2284e0d7
authored
Jun 13, 2024
by
liukaiwen
Browse files
修复分段边界问题
parent
f80560ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
magic_pdf/para/para_split_v2.py
magic_pdf/para/para_split_v2.py
+9
-2
No files found.
magic_pdf/para/para_split_v2.py
View file @
2284e0d7
...
@@ -586,8 +586,15 @@ def __connect_para_inter_page(pre_page_paras, next_page_paras, pre_page_layout_b
...
@@ -586,8 +586,15 @@ def __connect_para_inter_page(pre_page_paras, next_page_paras, pre_page_layout_b
# 不是文本,不连接
# 不是文本,不连接
return
False
return
False
pre_x2_max
=
__find_layout_bbox_by_line
(
pre_last_line
[
'bbox'
],
pre_page_layout_bbox
)[
2
]
pre_x2_max_bbox
=
__find_layout_bbox_by_line
(
pre_last_line
[
'bbox'
],
pre_page_layout_bbox
)
next_x0_min
=
__find_layout_bbox_by_line
(
next_first_line
[
'bbox'
],
next_page_layout_bbox
)[
0
]
if
not
pre_x2_max_bbox
:
return
False
next_x0_min_bbox
=
__find_layout_bbox_by_line
(
next_first_line
[
'bbox'
],
next_page_layout_bbox
)
if
not
next_x0_min_bbox
:
return
False
pre_x2_max
=
pre_x2_max_bbox
[
2
]
next_x0_min
=
next_x0_min_bbox
[
0
]
pre_last_line_text
=
pre_last_line_text
.
strip
()
pre_last_line_text
=
pre_last_line_text
.
strip
()
next_first_line_text
=
next_first_line_text
.
strip
()
next_first_line_text
=
next_first_line_text
.
strip
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment