├── .gitignore ├── README.md ├── api.py ├── requirements.txt ├── static ├── 1.jpg ├── bootstrap.min.css └── jquery.min.js ├── templates └── index.html └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/static/1.jpg -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/templates/index.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/remove-noise/HEAD/test.py --------------------------------------------------------------------------------