pub fn reconstruct_table(
words: &[HocrWord],
column_threshold: u32,
row_threshold_ratio: f64,
debug: bool,
) -> Vec<Vec<String>>Expand description
Reconstruct table structure from words
Takes detected words and reconstructs a 2D table by:
- Detecting column and row positions
- Assigning words to cells based on position
- Combining words within the same cell