├── .gitignore ├── .idea ├── flask.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── api.py ├── finalized_model.sav ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── background.jpg │ └── flowchart.png └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── main.js │ └── npm.js ├── templates ├── description.html ├── index.html ├── predict.html ├── result.html └── segment.html └── uploads └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/flask.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.idea/flask.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/api.py -------------------------------------------------------------------------------- /finalized_model.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/finalized_model.sav -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/images/background.jpg -------------------------------------------------------------------------------- /static/images/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/images/flowchart.png -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /templates/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/templates/description.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/templates/predict.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/templates/result.html -------------------------------------------------------------------------------- /templates/segment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apoorva-dave/LicensePlateDetector-deployment-flask/HEAD/templates/segment.html -------------------------------------------------------------------------------- /uploads/readme.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------