Files
douyin-captcha/docs/README.md
T
杨豪 d15b3c5b43 feat: 拖动重叠验证码离线求解(方向感知倒角+alpha轮廓+旋转扫描)
- src/: 最终交付物(solve.py base64 API、method_l_shape.py 核心算法、verify_result.py 验证工具)
- docs/: 方案文档与实验演进记录
- try/: 历史实验脚本(A~K 方法)
- 10/10 样本求解成功,3 个独立真值锚点偏差 <=4px
2026-09-07 20:13:22 +08:00

30 lines
885 B
Markdown
Raw 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.
# docs
项目文档索引。
## 文档列表
- [solution.md](solution.md) — 最终方案:算法原理、API 用法、结果验证方法、10 样本结果与已知边界
- [experiments.md](experiments.md) — 实验演进记录(A→L):各方法失败原因、转折点实验、调试坑、无真值交叉验证方法
## 快速开始
```bash
# 单样本求解(base64 或文件路径)
.venv/bin/python src/solve.py <大图> <mark>
# 批量求解 + 可视化(输出 src/out/L/)
.venv/bin/python src/method_l_shape.py
# 结果验证(叠加轮廓图,输出 src/out/L/verify/)
.venv/bin/python src/verify_result.py
```
## 相关目录
| 目录 | 用途 |
| --- | --- |
| `captchas/` | 原始样本(只读) |
| `src/` | 最终交付物:求解 API、核心算法、验证工具及其输出 |
| `try/` | 实验脚本与中间产物(历史方法 A~K) |