├── .DS_Store ├── .gitignore ├── i ├── glasses.png └── glasses.psd ├── index.html ├── readme.md ├── scripts ├── ccv.js ├── face.js ├── scripts.js └── stackblur.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /i/glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/i/glasses.png -------------------------------------------------------------------------------- /i/glasses.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/i/glasses.psd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/index.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/ccv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/scripts/ccv.js -------------------------------------------------------------------------------- /scripts/face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/scripts/face.js -------------------------------------------------------------------------------- /scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/scripts/scripts.js -------------------------------------------------------------------------------- /scripts/stackblur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/scripts/stackblur.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/HTML5-Face-Detection/HEAD/style.css --------------------------------------------------------------------------------