- Implement main application entry point in duck-ocr.py - Create logging configuration in logging_config.py - Add video streaming functionality in camera.py - Introduce main window UI in main_window.py - Include SVG assets for UI buttons and icons - Update .gitignore to exclude log files - Add placeholder .gitkeep files for empty directories
32 lines
359 B
Plaintext
32 lines
359 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.venv-*/
|
|
venv/
|
|
env/
|
|
|
|
# Local/runtime data
|
|
captures/photos/*
|
|
captures/videos/*
|
|
!captures/photos/.gitkeep
|
|
!captures/videos/.gitkeep
|
|
|
|
!models/.gitkeep
|
|
|
|
# OS/editor
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Ultralytics/runtime caches
|
|
runs/
|
|
*.onnx
|
|
*.engine
|
|
*.log |