├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .travis.yml ├── Dockerfile ├── Florentia-Thin-trial.ttf ├── LICENSE.txt ├── Makefile ├── README.md ├── api ├── __init__.py └── app.py ├── clean_text ├── __init__.py └── clean_text.py ├── conf.py ├── image_preprocessing ├── __init__.py ├── operations.py └── remove_noise.py ├── images ├── digital_menu.jpg └── sample_image.jpg ├── index.rst ├── read_image.py ├── requirements.txt ├── sphinx_to_gh_pages.sh └── tesseract_interface ├── __init__.py └── pytesser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/Dockerfile -------------------------------------------------------------------------------- /Florentia-Thin-trial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/Florentia-Thin-trial.ttf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/api/app.py -------------------------------------------------------------------------------- /clean_text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/clean_text/__init__.py -------------------------------------------------------------------------------- /clean_text/clean_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/clean_text/clean_text.py -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/conf.py -------------------------------------------------------------------------------- /image_preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/image_preprocessing/__init__.py -------------------------------------------------------------------------------- /image_preprocessing/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/image_preprocessing/operations.py -------------------------------------------------------------------------------- /image_preprocessing/remove_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/image_preprocessing/remove_noise.py -------------------------------------------------------------------------------- /images/digital_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/images/digital_menu.jpg -------------------------------------------------------------------------------- /images/sample_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/images/sample_image.jpg -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/index.rst -------------------------------------------------------------------------------- /read_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/read_image.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/requirements.txt -------------------------------------------------------------------------------- /sphinx_to_gh_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/sphinx_to_gh_pages.sh -------------------------------------------------------------------------------- /tesseract_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/tesseract_interface/__init__.py -------------------------------------------------------------------------------- /tesseract_interface/pytesser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yardstick17/image_text_reader/HEAD/tesseract_interface/pytesser.py --------------------------------------------------------------------------------