├── LICENSE ├── README.md ├── css └── style.css ├── images ├── aizoocom.png ├── demo.jpg └── result.png ├── index.html ├── js ├── detection.js ├── index.js └── tfjs.min.js └── tfjs-models ├── group1-shard1of1.bin └── model.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/css/style.css -------------------------------------------------------------------------------- /images/aizoocom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/images/aizoocom.png -------------------------------------------------------------------------------- /images/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/images/demo.jpg -------------------------------------------------------------------------------- /images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/images/result.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/index.html -------------------------------------------------------------------------------- /js/detection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/js/detection.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/js/index.js -------------------------------------------------------------------------------- /js/tfjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/js/tfjs.min.js -------------------------------------------------------------------------------- /tfjs-models/group1-shard1of1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/tfjs-models/group1-shard1of1.bin -------------------------------------------------------------------------------- /tfjs-models/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIZOOTech/mask-detection-web-demo/HEAD/tfjs-models/model.json --------------------------------------------------------------------------------