rtsp_tensorrt/.gitignore
sladro e13cb3659c feat: 初始化项目结构
- 创建基本项目结构和目录
- 添加CMake构建系统
- 实现基础的配置解析功能
- 添加YOLO推理框架支持
- 集成RTSP和视频流处理功能
- 添加性能监控和日志系统
2024-12-24 16:25:03 +08:00

38 lines
374 B
Plaintext

# Build directories
build/
bin/
lib/
# IDE files
.vscode/
.idea/
*.swp
*.swo
# Compiled files
*.o
*.so
*.a
*.dll
*.dylib
# CMake files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
compile_commands.json
# TensorRT engine files
*.engine
*.plan
# Python cache
__pycache__/
*.py[cod]
# Logs
*.log
# System files
.DS_Store
Thumbs.db