Initial commit: Wood knot detection model and GUI

This commit is contained in:
2025-12-22 14:11:39 -07:00
commit aed092f09c
20307 changed files with 785367 additions and 0 deletions

56
.gitignore vendored Normal file
View File

@ -0,0 +1,56 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual Environment
.venv/
venv/
ENV/
env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Model checkpoints and weights
*.pt
*.pth
*.onnx
*.blob
*.xml
*.bin
checkpoints/
weights/
runs/
# Dataset (large files)
IMAGE/
images/
*.jpg
*.jpeg
*.png
*.gif
bbox_coco_dataset.json
# Training outputs
train_output/
results/
*.log
# Jupyter
.ipynb_checkpoints/
*.ipynb
# OS
.DS_Store
Thumbs.db