
Detects table structure in a document Image with Microsoft Table Transformer and emits either [Rectangle<Double>] geometry boxes or [BoundingBox] with class ids, filtered by score_threshold. Use for table layout extraction from pages.
Locate tables on a page, crop each table region, and OCR the contents.
Pull document pages over HTTP, detect table layout, serialise the boxes, and deliver them.
[Rectangle<Double>] geometry-only boxes and [BoundingBox] boxes carrying class and confidence; the arm is fixed when the graph is deployed.[BoundingBox] arm the class id is the bound model's own structure-element label, not a stable cross-model schema; pin the `model` slot snapshot and resolve ids via its label map.score_threshold at 0.0 keeps every raw detection including very low confidence ones; raise it to suppress spurious boxes.device requesting CUDA resolves to CPU when no compatible accelerator is visible at startup; inference continues at CPU latency. An empty Image short-circuits to an empty list without invoking the model.Automated release