├── LICENSE ├── README.md ├── images └── demo.gif ├── trainer ├── .gitignore ├── .python-version ├── Pipfile ├── Pipfile.lock ├── README.md ├── captcha_aligner.py ├── common.py ├── decode_jsons.py ├── export_model.sh ├── infer.py ├── labeler.py ├── main.py └── synthesize.py └── user-scripts ├── .gitignore ├── 4chan-captcha-aligner.user.ts ├── 4chan-captcha-solver.user.ts ├── README.md ├── aligner.ts ├── build.js ├── dist ├── 4chan-captcha-aligner.user.js └── 4chan-captcha-solver.user.js ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── util.ts /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/README.md -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/images/demo.gif -------------------------------------------------------------------------------- /trainer/.gitignore: -------------------------------------------------------------------------------- 1 | /old-stuff 2 | /training 3 | /models 4 | /characters 5 | /synthetic 6 | -------------------------------------------------------------------------------- /trainer/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /trainer/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/Pipfile -------------------------------------------------------------------------------- /trainer/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/Pipfile.lock -------------------------------------------------------------------------------- /trainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/README.md -------------------------------------------------------------------------------- /trainer/captcha_aligner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/captcha_aligner.py -------------------------------------------------------------------------------- /trainer/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/common.py -------------------------------------------------------------------------------- /trainer/decode_jsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/decode_jsons.py -------------------------------------------------------------------------------- /trainer/export_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/export_model.sh -------------------------------------------------------------------------------- /trainer/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/infer.py -------------------------------------------------------------------------------- /trainer/labeler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/labeler.py -------------------------------------------------------------------------------- /trainer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/main.py -------------------------------------------------------------------------------- /trainer/synthesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/trainer/synthesize.py -------------------------------------------------------------------------------- /user-scripts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /user-scripts/4chan-captcha-aligner.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/4chan-captcha-aligner.user.ts -------------------------------------------------------------------------------- /user-scripts/4chan-captcha-solver.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/4chan-captcha-solver.user.ts -------------------------------------------------------------------------------- /user-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/README.md -------------------------------------------------------------------------------- /user-scripts/aligner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/aligner.ts -------------------------------------------------------------------------------- /user-scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/build.js -------------------------------------------------------------------------------- /user-scripts/dist/4chan-captcha-aligner.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/dist/4chan-captcha-aligner.user.js -------------------------------------------------------------------------------- /user-scripts/dist/4chan-captcha-solver.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/dist/4chan-captcha-solver.user.js -------------------------------------------------------------------------------- /user-scripts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/eslint.config.mjs -------------------------------------------------------------------------------- /user-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/package.json -------------------------------------------------------------------------------- /user-scripts/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/pnpm-lock.yaml -------------------------------------------------------------------------------- /user-scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/tsconfig.json -------------------------------------------------------------------------------- /user-scripts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppleDash/4chan-captcha-playground/HEAD/user-scripts/util.ts --------------------------------------------------------------------------------