├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml └── workflows │ ├── rapid_table_det.yml │ └── rapid_table_det_paddle.yml ├── .gitignore ├── .ipynb_checkpoints └── onnx_transform-checkpoint.ipynb ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── README_en.md ├── __init__.py ├── demo_onnx.py ├── demo_paddle.py ├── rapid_table_det ├── __init__.py ├── inference.py ├── models │ └── .gitkeep ├── predictor.py ├── requirments.txt └── utils │ ├── __init__.py │ ├── download_model.py │ ├── infer_engine.py │ ├── load_image.py │ ├── logger.py │ ├── transform.py │ └── visuallize.py ├── rapid_table_det_paddle ├── __init__.py ├── inference.py ├── models │ └── .gitkeep ├── predictor.py ├── requirments.txt └── utils.py ├── readme_resource ├── res_show.jpg ├── res_show2.jpg └── structure.png ├── requirements.txt ├── setup_rapid_table_det.py ├── setup_rapid_table_det_paddle.py ├── tests ├── __init__.py ├── test_files │ ├── chip.jpg │ ├── chip2.jpg │ └── doc.png ├── test_table_det.py └── test_table_det_paddle.py └── tools ├── __init__.py ├── fix_onnx.py └── onnx_transform.ipynb /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/rapid_table_det.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.github/workflows/rapid_table_det.yml -------------------------------------------------------------------------------- /.github/workflows/rapid_table_det_paddle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.github/workflows/rapid_table_det_paddle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/onnx_transform-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.ipynb_checkpoints/onnx_transform-checkpoint.ipynb -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/README_en.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/demo_onnx.py -------------------------------------------------------------------------------- /demo_paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/demo_paddle.py -------------------------------------------------------------------------------- /rapid_table_det/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/__init__.py -------------------------------------------------------------------------------- /rapid_table_det/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/inference.py -------------------------------------------------------------------------------- /rapid_table_det/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rapid_table_det/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/predictor.py -------------------------------------------------------------------------------- /rapid_table_det/requirments.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | Pillow 3 | opencv-python 4 | onnxruntime 5 | requests 6 | -------------------------------------------------------------------------------- /rapid_table_det/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rapid_table_det/utils/download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/download_model.py -------------------------------------------------------------------------------- /rapid_table_det/utils/infer_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/infer_engine.py -------------------------------------------------------------------------------- /rapid_table_det/utils/load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/load_image.py -------------------------------------------------------------------------------- /rapid_table_det/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/logger.py -------------------------------------------------------------------------------- /rapid_table_det/utils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/transform.py -------------------------------------------------------------------------------- /rapid_table_det/utils/visuallize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det/utils/visuallize.py -------------------------------------------------------------------------------- /rapid_table_det_paddle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det_paddle/__init__.py -------------------------------------------------------------------------------- /rapid_table_det_paddle/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det_paddle/inference.py -------------------------------------------------------------------------------- /rapid_table_det_paddle/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rapid_table_det_paddle/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det_paddle/predictor.py -------------------------------------------------------------------------------- /rapid_table_det_paddle/requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det_paddle/requirments.txt -------------------------------------------------------------------------------- /rapid_table_det_paddle/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/rapid_table_det_paddle/utils.py -------------------------------------------------------------------------------- /readme_resource/res_show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/readme_resource/res_show.jpg -------------------------------------------------------------------------------- /readme_resource/res_show2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/readme_resource/res_show2.jpg -------------------------------------------------------------------------------- /readme_resource/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/readme_resource/structure.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tqdm 3 | Pillow 4 | opencv-python 5 | onnxruntime 6 | requests 7 | -------------------------------------------------------------------------------- /setup_rapid_table_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/setup_rapid_table_det.py -------------------------------------------------------------------------------- /setup_rapid_table_det_paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/setup_rapid_table_det_paddle.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/chip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tests/test_files/chip.jpg -------------------------------------------------------------------------------- /tests/test_files/chip2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tests/test_files/chip2.jpg -------------------------------------------------------------------------------- /tests/test_files/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tests/test_files/doc.png -------------------------------------------------------------------------------- /tests/test_table_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tests/test_table_det.py -------------------------------------------------------------------------------- /tests/test_table_det_paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tests/test_table_det_paddle.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/fix_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tools/fix_onnx.py -------------------------------------------------------------------------------- /tools/onnx_transform.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidAI/RapidTableDetection/HEAD/tools/onnx_transform.ipynb --------------------------------------------------------------------------------