# ---------- 本地输入（视频、Excel、HEVC 转 H.264，勿提交）----------
/input/*
!/input/.gitkeep
/input/remuxed/
/input/**/*.mp4
/input/**/*.xlsx
/input/**/*.xls

# ---------- 推理 / 推流产物（TSV、日志、ROI、可视化视频）----------
/output/*
!/output/.gitkeep
/output/**/*.mp4
/output/**/*.log
/output/**/*.txt
/output/**/*.tsv
/output/**/basket_roi*.json
/output/smoke/

# ---------- 模型权重与 MediaPipe 任务文件（setup.sh 本地放置）----------
/weights/*
!/weights/.gitkeep
/weights/**/*.pt
/weights/**/*.task

doctor_identity_package/*.pth
doctor_identity_package/.mediapipe_models/

# 其他数据目录（若从 vendor 拷贝）
/data/

# ---------- 运行期临时 / 缓存 ----------
*.pth.tar
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
.env
.env.*
*.egg-info/
dist/
build/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
*.cover

# ---------- 临时 / 调试输出（误写在项目根或脚本旁）----------
*.mp4
*.avi
*.mkv
*.mov
*.log
*.tmp
*.temp
*.bak

# ---------- Jupyter / 编辑器临时 ----------
.ipynb_checkpoints/
*.swp
*~

# ---------- IDE / 系统 ----------
.DS_Store
.idea/
.vscode/
.cursor/
