├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── img.html ├── img.png ├── img.tiff ├── img.txt ├── page-seg-modes.txt └── src ├── lib.rs └── page_seg_mode.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/README.md -------------------------------------------------------------------------------- /img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/img.html -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/img.png -------------------------------------------------------------------------------- /img.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/img.tiff -------------------------------------------------------------------------------- /img.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/img.txt -------------------------------------------------------------------------------- /page-seg-modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/page-seg-modes.txt -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/page_seg_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimatter15/tesseract-rs/HEAD/src/page_seg_mode.rs --------------------------------------------------------------------------------