nodecv
v1.1.2
Published
Node.js binding to OpenCV
Downloads
64
Readme
nodecv
Node.js binding to OpenCV
Installment
$ npm i nodecv --save-devUsage
Image IO:
nodecv.imread(imagePath, callback);
nodecv.imread(buffer, callback);
nodecv.imwrite(outputPath, mat);Image Dissimilarity:
nodecv.imageDissimilarity(mat, mat, callback);Match:
nodecv.matchTemplate(mat, mat, method, callback);
nodecv.findPairs(mat, mat, callback);Mat properties:
im.width();
im.height();
im.size();
im.ellipse(x, y, width, height);
im.rectangle(x, y, width, height, color, thickness);Cascade detect:
const haarcascade = 'path/to/haarcascade.xml';
const cascade = new nodecv.CascadeClassifier(haarcascade);
cascade.detectMultiScale(mat, callback);NodeCV follow Google's C++ style conventions, and [email protected].
Use As Service

Test
$ make testLicense
The MIT License (MIT)
