Initial MVP application skeleton
Add PySide6 camera UI, YOLO/Tesseract detection pipeline, capture metadata, configuration, and project gitignore.
This commit is contained in:
11
app/main.py
Normal file
11
app/main.py
Normal 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))
|
||||
Reference in New Issue
Block a user