File size: 512 Bytes
d520909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Layout Detection Module

Detects document structure: text blocks, tables, figures, headings, etc.
Supports multiple backends: rule-based, PaddleStructure, and LayoutLM.
"""

from .base import LayoutDetector, LayoutConfig, LayoutResult
from .detector import (
    RuleBasedLayoutDetector,
    get_layout_detector,
    create_layout_detector,
)

__all__ = [
    "LayoutDetector",
    "LayoutConfig",
    "LayoutResult",
    "RuleBasedLayoutDetector",
    "get_layout_detector",
    "create_layout_detector",
]