├── .gitignore ├── LICENSE ├── README.md ├── dev ├── aiart.py ├── test.jpg └── test.py ├── docs └── python识别发票 1行代码搞定.xmind ├── examples ├── BankCardOCR.py └── IDCardOCR.py ├── potencent ├── __init__.py ├── api │ ├── __init__.py │ ├── aiart.py │ └── ocr.py ├── core │ ├── AIArt.py │ ├── OCR.py │ └── __init__.py └── lib │ ├── CommonUtils.py │ ├── Config.py │ ├── Const.py │ └── __init__.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_tencent.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/README.md -------------------------------------------------------------------------------- /dev/aiart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/dev/aiart.py -------------------------------------------------------------------------------- /dev/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/dev/test.jpg -------------------------------------------------------------------------------- /dev/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/dev/test.py -------------------------------------------------------------------------------- /docs/python识别发票 1行代码搞定.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/docs/python识别发票 1行代码搞定.xmind -------------------------------------------------------------------------------- /examples/BankCardOCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/examples/BankCardOCR.py -------------------------------------------------------------------------------- /examples/IDCardOCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/examples/IDCardOCR.py -------------------------------------------------------------------------------- /potencent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/__init__.py -------------------------------------------------------------------------------- /potencent/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/api/__init__.py -------------------------------------------------------------------------------- /potencent/api/aiart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/api/aiart.py -------------------------------------------------------------------------------- /potencent/api/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/api/ocr.py -------------------------------------------------------------------------------- /potencent/core/AIArt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/core/AIArt.py -------------------------------------------------------------------------------- /potencent/core/OCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/core/OCR.py -------------------------------------------------------------------------------- /potencent/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/core/__init__.py -------------------------------------------------------------------------------- /potencent/lib/CommonUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/lib/CommonUtils.py -------------------------------------------------------------------------------- /potencent/lib/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/lib/Config.py -------------------------------------------------------------------------------- /potencent/lib/Const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/potencent/lib/Const.py -------------------------------------------------------------------------------- /potencent/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_tencent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderWanFeng/potencent/HEAD/tests/test_tencent.py --------------------------------------------------------------------------------