A document processing team uses DLPy object detection to identify and localize table regions in scanned financial report images, requiring bounding box coordinates. Which architecture is most appropriate?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because table detection with bounding box output is an object detection problem requiring architectures that predict both class labels and spatial coordinates (x, y, width, height) for multiple regions within an image. DLPy supports YOLO-style architectures designed for this.
Full explanation below image
Full Explanation
B is correct because table detection with bounding box output is an object detection problem requiring architectures that predict both class labels and spatial coordinates (x, y, width, height) for multiple regions within an image. DLPy supports YOLO-style architectures designed for this. A is wrong; patch-based classifiers cannot efficiently produce bounding box coordinates for the full page. C is wrong; text classifiers operate on text sequences, not images. D is wrong; sequence-to-sequence models are for text translation/generation, not spatial bounding box regression.