├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_CN.md ├── docker-compose.yml ├── log_conf.yaml ├── main.py ├── models ├── OCRModel.py ├── RestfulModel.py └── __init__.py ├── pp-ocrv4 └── download_det_cls_rec.sh ├── requirements.in ├── requirements.txt ├── routers ├── __init__.py └── ocr.py ├── screenshots └── Swagger.png └── utils ├── ImageHelper.py └── __init__.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | test.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/README_CN.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /log_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/log_conf.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/main.py -------------------------------------------------------------------------------- /models/OCRModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/models/OCRModel.py -------------------------------------------------------------------------------- /models/RestfulModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/models/RestfulModel.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pp-ocrv4/download_det_cls_rec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/pp-ocrv4/download_det_cls_rec.sh -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routers/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/routers/ocr.py -------------------------------------------------------------------------------- /screenshots/Swagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/screenshots/Swagger.png -------------------------------------------------------------------------------- /utils/ImageHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velviagris/PaddleOCRFastAPI/HEAD/utils/ImageHelper.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------