Normalized geometry: x, y, width, height, baseline_y, rotation (degrees).
| 8 | |
| 9 | @dataclass |
| 10 | class NormalizedCoords: |
| 11 | """Normalized geometry: x, y, width, height, baseline_y, rotation (degrees).""" |
| 12 | x: float |
| 13 | y: float |
| 14 | width: float |
| 15 | height: float |
| 16 | baseline_y: float |
| 17 | rotation: float |
| 18 | |
| 19 | |
| 20 | class CoordProcessor: |