An open API service indexing awesome lists of open source software.

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

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.