├── .gitignore ├── README.md ├── before_after.gif ├── output ├── cell_pic.jpg ├── chart.JPG ├── desk.JPG ├── dollar_bill.JPG ├── math_cheat_sheet.JPG ├── notepad.JPG ├── receipt.jpg └── tax.jpeg ├── polygon_interacter.py ├── pyimagesearch ├── __init__.py ├── imutils.py └── transform.py ├── requirements.txt ├── sample_images ├── cell_pic.jpg ├── chart.JPG ├── desk.JPG ├── dollar_bill.JPG ├── math_cheat_sheet.JPG ├── notepad.JPG ├── receipt.jpg └── tax.jpeg ├── scan.py └── ui.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/README.md -------------------------------------------------------------------------------- /before_after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/before_after.gif -------------------------------------------------------------------------------- /output/cell_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/cell_pic.jpg -------------------------------------------------------------------------------- /output/chart.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/chart.JPG -------------------------------------------------------------------------------- /output/desk.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/desk.JPG -------------------------------------------------------------------------------- /output/dollar_bill.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/dollar_bill.JPG -------------------------------------------------------------------------------- /output/math_cheat_sheet.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/math_cheat_sheet.JPG -------------------------------------------------------------------------------- /output/notepad.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/notepad.JPG -------------------------------------------------------------------------------- /output/receipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/receipt.jpg -------------------------------------------------------------------------------- /output/tax.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/output/tax.jpeg -------------------------------------------------------------------------------- /polygon_interacter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/polygon_interacter.py -------------------------------------------------------------------------------- /pyimagesearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyimagesearch/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/pyimagesearch/imutils.py -------------------------------------------------------------------------------- /pyimagesearch/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/pyimagesearch/transform.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_images/cell_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/cell_pic.jpg -------------------------------------------------------------------------------- /sample_images/chart.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/chart.JPG -------------------------------------------------------------------------------- /sample_images/desk.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/desk.JPG -------------------------------------------------------------------------------- /sample_images/dollar_bill.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/dollar_bill.JPG -------------------------------------------------------------------------------- /sample_images/math_cheat_sheet.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/math_cheat_sheet.JPG -------------------------------------------------------------------------------- /sample_images/notepad.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/notepad.JPG -------------------------------------------------------------------------------- /sample_images/receipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/receipt.jpg -------------------------------------------------------------------------------- /sample_images/tax.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/sample_images/tax.jpeg -------------------------------------------------------------------------------- /scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/scan.py -------------------------------------------------------------------------------- /ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdcampbell/OpenCV-Document-Scanner/HEAD/ui.gif --------------------------------------------------------------------------------