table-transformer
table-transformer copied to clipboard
Why did the row/column dilation get removed?
The paper talks about doing row/column bounding box dilation to align the rows and columns and remove gaps. I see in the postprocessing.py code that this code has been commented out and removed.
# Dilate rows and columns before final extraction
#dilated_columns = fill_column_gaps(columns, table_bbox)
dilated_columns = columns
#dilated_rows = fill_row_gaps(rows, table_bbox)
dilated_rows = rows
Is there a reason for this? Or is the bounding box dilation happening elsewhere in the code that I've missed?
hi there 2 years later😅 did you happen to find anything about this that you happen to remember?