Unverified Commit 1e690670 authored by myhloli's avatar myhloli Committed by GitHub
Browse files

Merge pull request #56 from myhloli/master

有些ocr的text和block框差异过大,降低fill阈值到0.7
parents 61267ed6 ce992f27
......@@ -156,7 +156,7 @@ def fill_spans_in_blocks(blocks, spans):
block_spans = []
for span in spans:
span_bbox = span['bbox']
if calculate_overlap_area_in_bbox1_area_ratio(span_bbox, block_bbox) > 0.8:
if calculate_overlap_area_in_bbox1_area_ratio(span_bbox, block_bbox) > 0.7:
block_spans.append(span)
'''行内公式调整, 高度调整至与同行文字高度一致(优先左侧, 其次右侧)'''
......
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