├── .gitignore ├── README.md ├── constants.py ├── main.py ├── perspective_transform_by_qr.py ├── process_image.py ├── requirements.txt ├── utils.py └── watch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/README.md -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/constants.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/main.py -------------------------------------------------------------------------------- /perspective_transform_by_qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/perspective_transform_by_qr.py -------------------------------------------------------------------------------- /process_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/process_image.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/utils.py -------------------------------------------------------------------------------- /watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcelRobitaille/Receipt-Ingestion/HEAD/watch.py --------------------------------------------------------------------------------