wrz-yolo/.gitignore
2025-06-27 17:13:48 +08:00

40 lines
425 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

__pycache__/
# 输入视频文件
input_videos/
# 输出结果文件(保留.gitkeep
output_frames/*
!output_frames/.gitkeep
# 日志文件
logs/
*.log
# 模型文件
models/*.pt
# Python缓存文件
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
# 虚拟环境
venv/
env/
.venv/
# IDE文件
.vscode/
.idea/
*.swp
*.swo
# 系统文件
.DS_Store
Thumbs.db
# 临时文件
*.tmp
*.temp