deliverable_12_11_2025 (#3)

This commit is contained in:
2025-11-17 10:52:00 +00:00
parent d823f195d6
commit 6d6bebfed9
8 changed files with 3158 additions and 139 deletions

30
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug PaddleOCR CLI (.venv)",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONPATH": "${workspaceFolder}",
"PDF_FOLDER": "${workspaceFolder}/instructions",
"PYTHONUNBUFFERED": "1",
"RAY_MEMORY_MONITOR_ERROR_THRESHOLD": "0.95"
},
"python": "${workspaceFolder}/.venv/Scripts/python.exe",
"args": [
"--pdf-folder", "${workspaceFolder}/instructions",
"--dpi", "300",
"--text-det-box-thresh", "0.6",
"--text-det-unclip-ratio", "1.5",
"--text-rec-score-thresh", "0.0",
"--pages-per-pdf", "2",
"--min-box-score", "0",
"--lang", "es"
]
}
]
}