├── .gitignore ├── LICENSE.md ├── README.md ├── index.html ├── main.css ├── main.js ├── package.json ├── path.txt ├── render.js └── webcam.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | node_modules/ 3 | *.jpeg 4 | 5 | # IDE system files 6 | .idea 7 | .vscode -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/main.css -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/package.json -------------------------------------------------------------------------------- /path.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Public\Documents\uPlay -------------------------------------------------------------------------------- /render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/render.js -------------------------------------------------------------------------------- /webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshaplygin/face-detection/HEAD/webcam.js --------------------------------------------------------------------------------