first commit

This commit is contained in:
lihansani
2026-07-20 13:16:17 +08:00
commit 7affeaa253
235 changed files with 42351 additions and 0 deletions

21
image_test/run.bat Normal file
View File

@@ -0,0 +1,21 @@
@echo off
chcp 65001 >nul 2>&1
title 图片处理诊断
cd /d "%~dp0"
echo ========================================
echo 图片处理诊断脚本
echo 输入: image_test\input\
echo 输出: image_test\output\
echo ========================================
echo.
if exist "..\python\python.exe" (
"..\python\python.exe" process.py
) else (
python process.py
)
echo.
echo 完成。按任意键关闭...
pause >nul