Unverified Commit 5f794533 authored by Xiaomeng Zhao's avatar Xiaomeng Zhao Committed by GitHub
Browse files

Merge pull request #902 from myhloli/fix-line-over-512

refactor(pdf_parse): adjust line count threshold for layoutreader
parents 2600d324 5936684f
...@@ -298,7 +298,7 @@ def sort_lines_by_model(fix_blocks, page_w, page_h, line_height): ...@@ -298,7 +298,7 @@ def sort_lines_by_model(fix_blocks, page_w, page_h, line_height):
block['lines'].append({'bbox': line, 'spans': []}) block['lines'].append({'bbox': line, 'spans': []})
page_line_list.extend(lines) page_line_list.extend(lines)
if len(page_line_list) > 512: # layoutreader最高支持512line if len(page_line_list) > 200: # layoutreader最高支持512line
return None return None
# 使用layoutreader排序 # 使用layoutreader排序
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment