feat: 视觉记录系统 v1.0.0 - 摄像头定时拍照+智能分析+Web界面

This commit is contained in:
2026-04-16 09:42:53 +08:00
commit 49785191c3
14 changed files with 1997 additions and 0 deletions

27
start.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
chcp 65001 >nul
echo ================================
echo 视觉记录系统启动脚本 (Windows)
echo ================================
cd /d %~dp0
echo 检查 Python 环境...
python --version
if errorlevel 1 (
echo 错误: 未找到 Python请先安装 Python 3.10+
pause
exit /b 1
)
echo 检查依赖...
pip show opencv-python >nul 2>&1
if errorlevel 1 (
echo 安装依赖...
pip install -r requirements.txt
)
echo 启动服务...
python main.py
pause