├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── camera.html ├── camera.js ├── demo.gif ├── index.js ├── main.js ├── package.json ├── style.css └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/README.md -------------------------------------------------------------------------------- /camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/camera.html -------------------------------------------------------------------------------- /camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/camera.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/demo.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/index.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/style.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaip/HandPose-OSC/HEAD/yarn.lock --------------------------------------------------------------------------------