Add PySide6 camera UI, YOLO/Tesseract detection pipeline, capture metadata, configuration, and project gitignore.
12 lines
202 B
Python
12 lines
202 B
Python
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))
|