Commit 5936684f authored by myhloli's avatar myhloli
Browse files

refactor(pdf_parse): adjust line count threshold for layoutreader

- Lower the line count threshold from 316 to 200 to ensure compatibility
- This change aims to prevent potential issues with layoutreader's maximum line support
parent 5468e56f
......@@ -298,7 +298,7 @@ def sort_lines_by_model(fix_blocks, page_w, page_h, line_height):
block['lines'].append({'bbox': line, 'spans': []})
page_line_list.extend(lines)
if len(page_line_list) > 316: # layoutreader最高支持512line
if len(page_line_list) > 200: # layoutreader最高支持512line
return None
# 使用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