https://github.com/zazk/objectdetect-nodejs
Face Recognition in Node JS
https://github.com/zazk/objectdetect-nodejs
Last synced: 4 months ago
JSON representation
Face Recognition in Node JS
- Host: GitHub
- URL: https://github.com/zazk/objectdetect-nodejs
- Owner: zazk
- Created: 2016-06-23T01:18:00.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-23T01:28:36.000Z (almost 10 years ago)
- Last Synced: 2025-02-26T09:28:24.366Z (over 1 year ago)
- Size: 425 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# objectdetect-NodeJS
Face Recognition in Node JS
Port from VanillaJS: https://github.com/mtschirs/js-objectdetect
Use Node Canvas for replace native Canvas API: https://github.com/Automattic/node-canvas
### Download ###
- The actual library:
- [objectdetect.js](https://raw.github.com/mtschirs/js-objectdetect/master/js/objectdetect.js)
- One or more classifier:
- [objectdetect.frontalface.js](https://raw.github.com/mtschirs/js-objectdetect/master/js/objectdetect.frontalface.js)
- [objectdetect.eye.js](https://raw.github.com/mtschirs/js-objectdetect/master/js/objectdetect.eye.js)
- [objectdetect.handopen.js](https://raw.github.com/mtschirs/js-objectdetect/master/js/objectdetect.handopen.js)
- [objectdetect.handfist.js](https://raw.github.com/mtschirs/js-objectdetect/master/js/objectdetect.handfist.js)
- ...
### License ###
*js-objectdetect* is distributed under [MIT license](https://raw.github.com/mtschirs/js-objectdetect/master/LICENSE.txt). The included classifiers are subject to [their own licenses](https://raw.github.com/mtschirs/js-objectdetect/master/CLASSIFIER-LICENSES.txt).
### Credits ###
Thanks to Audun Mathias Øygard ([auduno](https://github.com/auduno)) for his inspirational [headtrackr library](https://github.com/auduno/headtrackr), Brandon Jones ([toji](https://github.com/toji)) for his valuable [javascript performance tipps](http://media.tojicode.com/sfjs-vectors/#1), Nikos ([foo123](https://github.com/foo123)) for his [port of JViolaJones](https://github.com/foo123/HAAR.js) on which the canny pruning algorithm is based on and [tracking.js](https://github.com/eduardolundgren/tracking.js) for the classifier format.