├── .dockerignore ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Dockerfile ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── bin └── nodecv ├── binding.gyp ├── entrypoint.sh ├── index.js ├── lib └── nodecv.js ├── package.json ├── sources.list ├── src ├── core │ ├── Mat.cc │ └── Mat.h ├── features2d │ ├── features2d.cc │ └── features2d.h ├── highgui │ ├── highgui.cc │ └── highgui.h ├── imgproc │ ├── imgproc.cc │ └── imgproc.h ├── init.cc └── objdetect │ ├── CascadeClassifier.cc │ └── CascadeClassifier.h └── test ├── fixture ├── T-Shirt-logo.jpg ├── T-Shirt.jpg ├── haarcascade_frontalface_alt2.xml ├── logo.png └── mona.jpg ├── mocha.opts └── nodecv.test.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | node_modules/ 3 | coverage/ 4 | build/ 5 | assets/ 6 | dist/ 7 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/Dockerfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/README.md -------------------------------------------------------------------------------- /bin/nodecv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/bin/nodecv -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/binding.gyp -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /src && make travis 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/nodecv'); 4 | -------------------------------------------------------------------------------- /lib/nodecv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/lib/nodecv.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/package.json -------------------------------------------------------------------------------- /sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/sources.list -------------------------------------------------------------------------------- /src/core/Mat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/core/Mat.cc -------------------------------------------------------------------------------- /src/core/Mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/core/Mat.h -------------------------------------------------------------------------------- /src/features2d/features2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/features2d/features2d.cc -------------------------------------------------------------------------------- /src/features2d/features2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/features2d/features2d.h -------------------------------------------------------------------------------- /src/highgui/highgui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/highgui/highgui.cc -------------------------------------------------------------------------------- /src/highgui/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/highgui/highgui.h -------------------------------------------------------------------------------- /src/imgproc/imgproc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/imgproc/imgproc.cc -------------------------------------------------------------------------------- /src/imgproc/imgproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/imgproc/imgproc.h -------------------------------------------------------------------------------- /src/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/init.cc -------------------------------------------------------------------------------- /src/objdetect/CascadeClassifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/objdetect/CascadeClassifier.cc -------------------------------------------------------------------------------- /src/objdetect/CascadeClassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/src/objdetect/CascadeClassifier.h -------------------------------------------------------------------------------- /test/fixture/T-Shirt-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/fixture/T-Shirt-logo.jpg -------------------------------------------------------------------------------- /test/fixture/T-Shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/fixture/T-Shirt.jpg -------------------------------------------------------------------------------- /test/fixture/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/fixture/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /test/fixture/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/fixture/logo.png -------------------------------------------------------------------------------- /test/fixture/mona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/fixture/mona.jpg -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require should 2 | --reporter spec -------------------------------------------------------------------------------- /test/nodecv.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/nodecv/HEAD/test/nodecv.test.js --------------------------------------------------------------------------------