├── .gitignore ├── CamScan ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── CamScanner ├── Applying_perspective.py ├── Per_blur.py ├── Sharpen.py ├── __init__.py ├── __pycache__ │ ├── Applying_perspective.cpython-36.pyc │ ├── Per_blur.cpython-36.pyc │ ├── Sharpen.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── convert.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── addRotation.py ├── admin.py ├── apps.py ├── convert.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── static │ └── Scan │ │ └── Scan.css ├── templates │ ├── download.html │ ├── final.html │ ├── index.html │ ├── result.html │ └── test.html ├── tests.py ├── urls.py └── views.py ├── README.md ├── db.sqlite3 ├── images ├── 10th.png ├── 11th.png ├── 12th.png ├── 1st.png ├── 2nd.png ├── 3rd.png ├── 4th.png ├── 5th.png ├── 6th.png ├── 7th.png ├── 8th.png └── 9th.png ├── manage.py ├── my.pdf └── requirement.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/.gitignore -------------------------------------------------------------------------------- /CamScan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CamScan/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CamScan/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /CamScan/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /CamScan/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /CamScan/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/settings.py -------------------------------------------------------------------------------- /CamScan/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/urls.py -------------------------------------------------------------------------------- /CamScan/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScan/wsgi.py -------------------------------------------------------------------------------- /CamScanner/Applying_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/Applying_perspective.py -------------------------------------------------------------------------------- /CamScanner/Per_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/Per_blur.py -------------------------------------------------------------------------------- /CamScanner/Sharpen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/Sharpen.py -------------------------------------------------------------------------------- /CamScanner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CamScanner/__pycache__/Applying_perspective.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/Applying_perspective.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/Per_blur.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/Per_blur.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/Sharpen.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/Sharpen.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/convert.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/convert.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/addRotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/addRotation.py -------------------------------------------------------------------------------- /CamScanner/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/admin.py -------------------------------------------------------------------------------- /CamScanner/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/apps.py -------------------------------------------------------------------------------- /CamScanner/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/convert.py -------------------------------------------------------------------------------- /CamScanner/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CamScanner/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CamScanner/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/models.py -------------------------------------------------------------------------------- /CamScanner/static/Scan/Scan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/static/Scan/Scan.css -------------------------------------------------------------------------------- /CamScanner/templates/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/templates/download.html -------------------------------------------------------------------------------- /CamScanner/templates/final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/templates/final.html -------------------------------------------------------------------------------- /CamScanner/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/templates/index.html -------------------------------------------------------------------------------- /CamScanner/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/templates/result.html -------------------------------------------------------------------------------- /CamScanner/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/templates/test.html -------------------------------------------------------------------------------- /CamScanner/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/tests.py -------------------------------------------------------------------------------- /CamScanner/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/urls.py -------------------------------------------------------------------------------- /CamScanner/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/CamScanner/views.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /images/10th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/10th.png -------------------------------------------------------------------------------- /images/11th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/11th.png -------------------------------------------------------------------------------- /images/12th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/12th.png -------------------------------------------------------------------------------- /images/1st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/1st.png -------------------------------------------------------------------------------- /images/2nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/2nd.png -------------------------------------------------------------------------------- /images/3rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/3rd.png -------------------------------------------------------------------------------- /images/4th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/4th.png -------------------------------------------------------------------------------- /images/5th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/5th.png -------------------------------------------------------------------------------- /images/6th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/6th.png -------------------------------------------------------------------------------- /images/7th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/7th.png -------------------------------------------------------------------------------- /images/8th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/8th.png -------------------------------------------------------------------------------- /images/9th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/images/9th.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/manage.py -------------------------------------------------------------------------------- /my.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/my.pdf -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackcipher101/CamScanner_webapp/HEAD/requirement.txt --------------------------------------------------------------------------------