├── .gitignore ├── README.md ├── __pycache__ ├── hough_line_corner_detector.cpython-37.pyc └── processors.cpython-37.pyc ├── hough_line_corner_detector.py ├── input ├── page.jpg └── receipt.jpg ├── output ├── 10. tab_extract rotated.jpg ├── closed.jpg ├── denoised.jpg ├── edges.jpg ├── grouped.jpg ├── hough_line.jpg ├── intersection_point_output.jpg ├── output.jpg ├── resized.jpg └── thresholded.jpg ├── page_extractor.py ├── processors.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/hough_line_corner_detector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/__pycache__/hough_line_corner_detector.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/processors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/__pycache__/processors.cpython-37.pyc -------------------------------------------------------------------------------- /hough_line_corner_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/hough_line_corner_detector.py -------------------------------------------------------------------------------- /input/page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/input/page.jpg -------------------------------------------------------------------------------- /input/receipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/input/receipt.jpg -------------------------------------------------------------------------------- /output/10. tab_extract rotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/10. tab_extract rotated.jpg -------------------------------------------------------------------------------- /output/closed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/closed.jpg -------------------------------------------------------------------------------- /output/denoised.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/denoised.jpg -------------------------------------------------------------------------------- /output/edges.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/edges.jpg -------------------------------------------------------------------------------- /output/grouped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/grouped.jpg -------------------------------------------------------------------------------- /output/hough_line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/hough_line.jpg -------------------------------------------------------------------------------- /output/intersection_point_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/intersection_point_output.jpg -------------------------------------------------------------------------------- /output/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/output.jpg -------------------------------------------------------------------------------- /output/resized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/resized.jpg -------------------------------------------------------------------------------- /output/thresholded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/output/thresholded.jpg -------------------------------------------------------------------------------- /page_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/page_extractor.py -------------------------------------------------------------------------------- /processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/processors.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shakleen/Python-Document-Detector/HEAD/requirements.txt --------------------------------------------------------------------------------