Initial MVP application skeleton

Add PySide6 camera UI, YOLO/Tesseract detection pipeline, capture metadata, configuration, and project gitignore.
This commit is contained in:
2026-05-07 00:18:38 +02:00
commit 090865af76
18 changed files with 1140 additions and 0 deletions

11
app/main.py Normal file
View File

@@ -0,0 +1,11 @@
from __future__ import annotations
import sys
from app.config import AppConfig
from app.main_window import run_app
def main() -> None:
app_config = AppConfig()
sys.exit(run_app(app_config))