├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── docs ├── README_zh-Hans.md ├── error │ ├── index.md │ └── missDll.png ├── staticLinking │ └── index.md └── test_images │ ├── test_1.png │ ├── test_2.png │ ├── test_3.png │ └── test_4.png └── src ├── angle_net.rs ├── base_net.rs ├── crnn_net.rs ├── db_net.rs ├── lib.rs ├── ocr_error.rs ├── ocr_lite.rs ├── ocr_result.rs ├── ocr_utils.rs └── scale_param.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/README.md -------------------------------------------------------------------------------- /docs/README_zh-Hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/README_zh-Hans.md -------------------------------------------------------------------------------- /docs/error/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/error/index.md -------------------------------------------------------------------------------- /docs/error/missDll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/error/missDll.png -------------------------------------------------------------------------------- /docs/staticLinking/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/staticLinking/index.md -------------------------------------------------------------------------------- /docs/test_images/test_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/test_images/test_1.png -------------------------------------------------------------------------------- /docs/test_images/test_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/test_images/test_2.png -------------------------------------------------------------------------------- /docs/test_images/test_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/test_images/test_3.png -------------------------------------------------------------------------------- /docs/test_images/test_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/docs/test_images/test_4.png -------------------------------------------------------------------------------- /src/angle_net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/angle_net.rs -------------------------------------------------------------------------------- /src/base_net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/base_net.rs -------------------------------------------------------------------------------- /src/crnn_net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/crnn_net.rs -------------------------------------------------------------------------------- /src/db_net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/db_net.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/ocr_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/ocr_error.rs -------------------------------------------------------------------------------- /src/ocr_lite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/ocr_lite.rs -------------------------------------------------------------------------------- /src/ocr_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/ocr_result.rs -------------------------------------------------------------------------------- /src/ocr_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/ocr_utils.rs -------------------------------------------------------------------------------- /src/scale_param.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mg-chao/paddle-ocr-rs/HEAD/src/scale_param.rs --------------------------------------------------------------------------------