├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ └── config.yml └── workflows │ ├── SyncToGitee.yml │ └── gen_whl_to_pypi_rapidocr.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── android └── README.md ├── api └── README.md ├── assets ├── RapidOCRDemo.ipynb ├── RapidOCR_LOGO.png └── colab-badge.svg ├── cliff.toml ├── cpp └── README.md ├── docker ├── README.md ├── docker_build&run.sh ├── docker_stop&clean.sh └── dockerfile ├── docs ├── README_zh.md └── doc_whl_rapidocr.md ├── dotnet └── README.md ├── ios └── README.md ├── jvm └── README.md ├── ocrweb └── README.md └── python ├── README.md ├── demo.py ├── rapidocr ├── __init__.py ├── cal_rec_boxes │ ├── __init__.py │ └── main.py ├── ch_ppocr_cls │ ├── __init__.py │ ├── main.py │ └── utils.py ├── ch_ppocr_det │ ├── __init__.py │ ├── main.py │ └── utils.py ├── ch_ppocr_rec │ ├── __init__.py │ ├── main.py │ ├── typings.py │ └── utils.py ├── cli.py ├── config.yaml ├── default_models.yaml ├── inference_engine │ ├── __init__.py │ ├── base.py │ ├── onnxruntime │ │ ├── __init__.py │ │ ├── main.py │ │ └── provider_config.py │ ├── openvino.py │ ├── paddle.py │ └── pytorch │ │ ├── __init__.py │ │ ├── device_config.py │ │ ├── main.py │ │ └── networks │ │ ├── __init__.py │ │ ├── arch_config.yaml │ │ ├── architectures │ │ ├── __init__.py │ │ └── base_model.py │ │ ├── backbones │ │ ├── __init__.py │ │ ├── det_mobilenet_v3.py │ │ ├── rec_donut_swin.py │ │ ├── rec_hgnet.py │ │ ├── rec_lcnetv3.py │ │ ├── rec_mobilenet_v3.py │ │ ├── rec_mv1_enhance.py │ │ ├── rec_pphgnetv2.py │ │ └── rec_svtrnet.py │ │ ├── common.py │ │ ├── heads │ │ ├── __init__.py │ │ ├── cls_head.py │ │ ├── det_db_head.py │ │ ├── rec_ctc_head.py │ │ └── rec_multi_head.py │ │ ├── main.py │ │ └── necks │ │ ├── __init__.py │ │ ├── db_fpn.py │ │ ├── intracl.py │ │ └── rnn.py ├── main.py ├── models │ └── .gitkeep └── utils │ ├── __init__.py │ ├── download_file.py │ ├── load_image.py │ ├── log.py │ ├── output.py │ ├── parse_parameters.py │ ├── process_img.py │ ├── to_json.py │ ├── to_markdown.py │ ├── typings.py │ ├── utils.py │ └── vis_res.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── base_module.py ├── test_cli.py ├── test_det_cls_rec.py ├── test_engine.py ├── test_files ├── black_font_color_transparent.png ├── ch_doc_server.png ├── ch_en_num.jpg ├── check_return_word_len.jpeg ├── devanagari.jpg ├── el_rec.jpg ├── empty_black.jpg ├── en.jpg ├── en_rec.jpg ├── eslav.jpg ├── img_exif_orientation.jpg ├── issue_170.png ├── japan.jpg ├── korean.jpg ├── latin.jpg ├── return_word_debug.jpg ├── short.png ├── test_letterbox_like.jpg ├── test_without_det.jpg ├── text_cls.jpg ├── text_det.jpg ├── text_rec.jpg ├── text_vertical_words.png ├── th_rec.jpg ├── two_dim_image.npy └── white_font_color_transparent.png ├── test_input.py ├── test_rec_language.py ├── test_return_word.py ├── test_to_other_format.py └── test_vis.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/SyncToGitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.github/workflows/SyncToGitee.yml -------------------------------------------------------------------------------- /.github/workflows/gen_whl_to_pypi_rapidocr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.github/workflows/gen_whl_to_pypi_rapidocr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/README.md -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/android/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/api/README.md -------------------------------------------------------------------------------- /assets/RapidOCRDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/assets/RapidOCRDemo.ipynb -------------------------------------------------------------------------------- /assets/RapidOCR_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/assets/RapidOCR_LOGO.png -------------------------------------------------------------------------------- /assets/colab-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/assets/colab-badge.svg -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/cliff.toml -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/cpp/README.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker_build&run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docker/docker_build&run.sh -------------------------------------------------------------------------------- /docker/docker_stop&clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docker/docker_stop&clean.sh -------------------------------------------------------------------------------- /docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docker/dockerfile -------------------------------------------------------------------------------- /docs/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docs/README_zh.md -------------------------------------------------------------------------------- /docs/doc_whl_rapidocr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/docs/doc_whl_rapidocr.md -------------------------------------------------------------------------------- /dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/dotnet/README.md -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 需要志愿者捐赠,请直接进群联系,qq群号:887298230 4 | 5 | A contributor is wanted. 6 | -------------------------------------------------------------------------------- /jvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/jvm/README.md -------------------------------------------------------------------------------- /ocrweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/ocrweb/README.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/README.md -------------------------------------------------------------------------------- /python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/demo.py -------------------------------------------------------------------------------- /python/rapidocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/cal_rec_boxes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/cal_rec_boxes/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/cal_rec_boxes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/cal_rec_boxes/main.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_cls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_cls/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_cls/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_cls/main.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_cls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_cls/utils.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_det/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_det/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_det/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_det/main.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_det/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_det/utils.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_rec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_rec/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_rec/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_rec/main.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_rec/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_rec/typings.py -------------------------------------------------------------------------------- /python/rapidocr/ch_ppocr_rec/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/ch_ppocr_rec/utils.py -------------------------------------------------------------------------------- /python/rapidocr/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/cli.py -------------------------------------------------------------------------------- /python/rapidocr/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/config.yaml -------------------------------------------------------------------------------- /python/rapidocr/default_models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/default_models.yaml -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/base.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/onnxruntime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/onnxruntime/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/onnxruntime/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/onnxruntime/main.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/onnxruntime/provider_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/onnxruntime/provider_config.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/openvino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/openvino.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/paddle.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/device_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/device_config.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/main.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/arch_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/arch_config.yaml -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/architectures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/architectures/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/architectures/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/architectures/base_model.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/det_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/det_mobilenet_v3.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_donut_swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_donut_swin.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_hgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_hgnet.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_lcnetv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_lcnetv3.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_mobilenet_v3.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_mv1_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_mv1_enhance.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_pphgnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_pphgnetv2.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/backbones/rec_svtrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/backbones/rec_svtrnet.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/common.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/heads/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/heads/cls_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/heads/cls_head.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/heads/det_db_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/heads/det_db_head.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/heads/rec_ctc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/heads/rec_ctc_head.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/heads/rec_multi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/heads/rec_multi_head.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/main.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/necks/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/necks/db_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/necks/db_fpn.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/necks/intracl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/necks/intracl.py -------------------------------------------------------------------------------- /python/rapidocr/inference_engine/pytorch/networks/necks/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/inference_engine/pytorch/networks/necks/rnn.py -------------------------------------------------------------------------------- /python/rapidocr/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/main.py -------------------------------------------------------------------------------- /python/rapidocr/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/rapidocr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/__init__.py -------------------------------------------------------------------------------- /python/rapidocr/utils/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/download_file.py -------------------------------------------------------------------------------- /python/rapidocr/utils/load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/load_image.py -------------------------------------------------------------------------------- /python/rapidocr/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/log.py -------------------------------------------------------------------------------- /python/rapidocr/utils/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/output.py -------------------------------------------------------------------------------- /python/rapidocr/utils/parse_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/parse_parameters.py -------------------------------------------------------------------------------- /python/rapidocr/utils/process_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/process_img.py -------------------------------------------------------------------------------- /python/rapidocr/utils/to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/to_json.py -------------------------------------------------------------------------------- /python/rapidocr/utils/to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/to_markdown.py -------------------------------------------------------------------------------- /python/rapidocr/utils/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/typings.py -------------------------------------------------------------------------------- /python/rapidocr/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/utils.py -------------------------------------------------------------------------------- /python/rapidocr/utils/vis_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/rapidocr/utils/vis_res.py -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/__init__.py -------------------------------------------------------------------------------- /python/tests/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/base_module.py -------------------------------------------------------------------------------- /python/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_cli.py -------------------------------------------------------------------------------- /python/tests/test_det_cls_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_det_cls_rec.py -------------------------------------------------------------------------------- /python/tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_engine.py -------------------------------------------------------------------------------- /python/tests/test_files/black_font_color_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/black_font_color_transparent.png -------------------------------------------------------------------------------- /python/tests/test_files/ch_doc_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/ch_doc_server.png -------------------------------------------------------------------------------- /python/tests/test_files/ch_en_num.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/ch_en_num.jpg -------------------------------------------------------------------------------- /python/tests/test_files/check_return_word_len.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/check_return_word_len.jpeg -------------------------------------------------------------------------------- /python/tests/test_files/devanagari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/devanagari.jpg -------------------------------------------------------------------------------- /python/tests/test_files/el_rec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/el_rec.jpg -------------------------------------------------------------------------------- /python/tests/test_files/empty_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/empty_black.jpg -------------------------------------------------------------------------------- /python/tests/test_files/en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/en.jpg -------------------------------------------------------------------------------- /python/tests/test_files/en_rec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/en_rec.jpg -------------------------------------------------------------------------------- /python/tests/test_files/eslav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/eslav.jpg -------------------------------------------------------------------------------- /python/tests/test_files/img_exif_orientation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/img_exif_orientation.jpg -------------------------------------------------------------------------------- /python/tests/test_files/issue_170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/issue_170.png -------------------------------------------------------------------------------- /python/tests/test_files/japan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/japan.jpg -------------------------------------------------------------------------------- /python/tests/test_files/korean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/korean.jpg -------------------------------------------------------------------------------- /python/tests/test_files/latin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/latin.jpg -------------------------------------------------------------------------------- /python/tests/test_files/return_word_debug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/return_word_debug.jpg -------------------------------------------------------------------------------- /python/tests/test_files/short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/short.png -------------------------------------------------------------------------------- /python/tests/test_files/test_letterbox_like.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/test_letterbox_like.jpg -------------------------------------------------------------------------------- /python/tests/test_files/test_without_det.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/test_without_det.jpg -------------------------------------------------------------------------------- /python/tests/test_files/text_cls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/text_cls.jpg -------------------------------------------------------------------------------- /python/tests/test_files/text_det.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/text_det.jpg -------------------------------------------------------------------------------- /python/tests/test_files/text_rec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/text_rec.jpg -------------------------------------------------------------------------------- /python/tests/test_files/text_vertical_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/text_vertical_words.png -------------------------------------------------------------------------------- /python/tests/test_files/th_rec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/th_rec.jpg -------------------------------------------------------------------------------- /python/tests/test_files/two_dim_image.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/two_dim_image.npy -------------------------------------------------------------------------------- /python/tests/test_files/white_font_color_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_files/white_font_color_transparent.png -------------------------------------------------------------------------------- /python/tests/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_input.py -------------------------------------------------------------------------------- /python/tests/test_rec_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_rec_language.py -------------------------------------------------------------------------------- /python/tests/test_return_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_return_word.py -------------------------------------------------------------------------------- /python/tests/test_to_other_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_to_other_format.py -------------------------------------------------------------------------------- /python/tests/test_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidOCR/HEAD/python/tests/test_vis.py --------------------------------------------------------------------------------