Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

opencv

peterbraden1.8kMIT7.0.0

Node Bindings to OpenCV

opencv, computer, vision, quadrocopter

readme

node-opencv

Build Status

OpenCV bindings for Node.js. OpenCV is the defacto computer vision library - by interfacing with it natively in node, we get powerful real time vision in js.

People are using node-opencv to fly control quadrocoptors, detect faces from webcam images and annotate video streams. If you're using it for something cool, I'd love to hear about it!

Install

You'll need OpenCV 2.3.1 or newer installed before installing node-opencv.

Specific for macOS

Install OpenCV using brew

brew install pkg-config
brew install opencv@2
brew link --force opencv@2

Specific for Windows

  1. Download and install OpenCV (Be sure to use a 2.4 version) @ http://opencv.org/releases.html For these instructions we will assume OpenCV is put at C:\OpenCV, but you can adjust accordingly.

  2. If you haven't already, create a system variable called OPENCV_DIR and set it to C:\OpenCV\build\x64\vc12

    Make sure the "x64" part matches the version of NodeJS you are using.

    Also add the following to your system PATH

     ;%OPENCV_DIR%\bin
  3. Install Visual Studio 2013. Make sure to get the C++ components. You can use a different edition, just make sure OpenCV supports it, and you set the "vcxx" part of the variables above to match.

  4. Download peterbraden/node-opencv fork git clone https://github.com/peterbraden/node-opencv

  5. run npm install

$ npm install opencv

Examples

Run the examples from the parent directory.

Face Detection

cv.readImage("./examples/files/mona.png", function(err, im){
  im.detectObject(cv.FACE_CASCADE, {}, function(err, faces){
    for (var i=0;i<faces.length; i++){
      var x = faces[i]
      im.ellipse(x.x + x.width/2, x.y + x.height/2, x.width/2, x.height/2);
    }
    im.save('./out.jpg');
  });
})

API Documentation

Matrix

The matrix is the most useful base data structure in OpenCV. Things like images are just matrices of pixels.

Creation

new Matrix(rows, cols)

Or if you're thinking of a Matrix as an image:

new Matrix(height, width)

Or you can use opencv to read in image files. Supported formats are in the OpenCV docs, but jpgs etc are supported.

cv.readImage(filename, function(err, mat){
  ...
})

cv.readImage(buffer, function(err, mat){
  ...
})

If you need to pipe data into an image, you can use an ImageDataStream:

var s = new cv.ImageDataStream()

s.on('load', function(matrix){
  ...
})

fs.createReadStream('./examples/files/mona.png').pipe(s);

If however, you have a series of images, and you wish to stream them into a stream of Matrices, you can use an ImageStream. Thus:

var s = new cv.ImageStream()

s.on('data', function(matrix){
   ...
})

ardrone.createPngStream().pipe(s);

Note: Each 'data' event into the ImageStream should be a complete image buffer.

Accessing Data

var mat = new cv.Matrix.Eye(4,4); // Create identity matrix

mat.get(0,0) // 1

mat.row(0)  // [1,0,0,0]
mat.col(3)  // [0,0,0,1]
Save
mat.save('./pic.jpg')

or:

var buff = mat.toBuffer()

Image Processing

im.convertGrayscale()
im.canny(5, 300)
im.houghLinesP()

Simple Drawing

im.ellipse(x, y)
im.line([x1,y1], [x2, y2])

Object Detection

There is a shortcut method for Viola-Jones Haar Cascade object detection. This can be used for face detection etc.

mat.detectObject(haar_cascade_xml, opts, function(err, matches){})

For convenience in face detection, cv.FACE_CASCADE is a cascade that can be used for frontal face detection.

Also:

mat.goodFeaturesToTrack

Contours

mat.findCountours
mat.drawContour
mat.drawAllContours

Using Contours

findContours returns a Contours collection object, not a native array. This object provides functions for accessing, computing with, and altering the contours contained in it. See relevant source code and examples

var contours = im.findContours();

// Count of contours in the Contours object
contours.size();

// Count of corners(verticies) of contour `index`
contours.cornerCount(index);

// Access vertex data of contours
for(var c = 0; c < contours.size(); ++c) {
  console.log("Contour " + c);
  for(var i = 0; i < contours.cornerCount(c); ++i) {
    var point = contours.point(c, i);
    console.log("(" + point.x + "," + point.y + ")");
  }
}

// Computations of contour `index`
contours.area(index);
contours.arcLength(index, isClosed);
contours.boundingRect(index);
contours.minAreaRect(index);
contours.isConvex(index);
contours.fitEllipse(index);

// Destructively alter contour `index`
contours.approxPolyDP(index, epsilon, isClosed);
contours.convexHull(index, clockwise);

Face Recognization

It requires to train then predict. For acceptable result, the face should be cropped, grayscaled and aligned, I ignore this part so that we may focus on the api usage.

** Please ensure your OpenCV 3.2+ is configured with contrib. MacPorts user may port install opencv +contrib **

const fs = require('fs');
const path = require('path');
const cv = require('opencv');

function forEachFileInDir(dir, cb) {
  let f = fs.readdirSync(dir);
  f.forEach(function (fpath, index, array) {
    if (fpath != '.DS_Store')
     cb(path.join(dir, fpath));
  });
}

let dataDir = "./_training";
function trainIt (fr) {
  // if model existe, load it
  if ( fs.existsSync('./trained.xml') ) {
    fr.loadSync('./trained.xml');
    return;
  }

  // else train a model
  let samples = [];
  forEachFileInDir(dataDir, (f)=>{
      cv.readImage(f, function (err, im) {
          // Assume all training photo are named as id_xxx.jpg
          let labelNumber = parseInt(path.basename(f).substring(3));
          samples.push([labelNumber, im]);
      })
  })

  if ( samples.length > 3 ) {
    // There are async and sync version of training method:
    // .train(info, cb)
    //     cb : standard Nan::Callback
    //     info : [[intLabel,matrixImage],...])
    // .trainSync(info)
    fr.trainSync(samples);
    fr.saveSync('./trained.xml');
  }else {
    console.log('Not enough images uploaded yet', cvImages)
  }
}

function predictIt(fr, f){
  cv.readImage(f, function (err, im) {
    let result = fr.predictSync(im);
    console.log(`recognize result:(${f}) id=${result.id} conf=${100.0-result.confidence}`);
  });
}

//using defaults: .createLBPHFaceRecognizer(radius=1, neighbors=8, grid_x=8, grid_y=8, threshold=80)
const fr = new cv.FaceRecognizer();
trainIt(fr);
forEachFileInDir('./_bench', (f) => predictIt(fr, f));

Test

Using tape. Run with command:

npm test.

Contributing

I (@peterbraden) don't spend much time maintaining this library, it runs primarily on contributor support. I'm happy to accept most PR's if the tests run green, all new functionality is tested, and there are no objections in the PR.

Because I haven't got much time for maintenance, I'd prefer to keep an absolute minimum of dependencies.

MIT License

The library is distributed under the MIT License - if for some reason that doesn't work for you please get in touch.

changelog

Changelog

7.0.0

  • Support Node v12 thanks to @guangmingwan
  • Support OpenCV 4 thanks to @grandpaul

6.3.0

  • Housekeeping

6.2.0

  • Remove prebuilt binaries
  • Housekeeping
  • Security fix.

6.0.0

Enhancements

  • @wenq added contour.moments method.
  • @andreasgal added matrix.substract method.
  • @jainanshul added matrix.mean method.
  • @idubinskiy restored contour.points method.
  • @danschultzer updated node-pre-gyp to fix load of node-opencv in electron runtime.
  • @andreasgal made matrix.getData work with RGB images.
  • @Evilcat325 added matrix.MatchTemplateByMatrix method.
  • @danschultzer added code coverage.

Bug fixes

  • @dominikdolancic fixed image load issue in matrix.matchTemplate().
  • @AwooOOoo fixed type_info errors in Visual Studio with std namespace pollution.
  • @mvines fixed issue that prevented AsyncSaveWorker from using de-allocated memory.
  • @mcwhittemore fixed dissimilarity example image load.
  • @saoron fixed dead index.html documentup source.
  • @andreasgal fixed an issue with matrix.crop (and potentially others), where matrix.getData ends up returning less than full matrix.
  • @danschultzer fixed examples/test.js channel issue, and problematic Vec3b casting (instead of Vec3f) in matrix.set.

Backwards incompatible changes

  • @dxprog changed readImage to load image with CV_LOAD_IMAGE_UNCHANGED instead of CV_LOAD_IMAGE_COLOR. The latter returned the image as 3-channel.
  • @danschultzer changed VideoCapture.close to VideoCapture.release.

Thanks to all, also a massive thanks to @danschultzer for helping get the open tickets and PR's under control.

5.0.0 (Feb 9 2016)

  • @mvines and @svogl started working on OpenCV 3.x support.
  • @sirotenko added a getFrameCount method
  • @vaceta implemented getFrameAt
  • @jainanshul improved some methods
  • @cascade256 improved the windows build

Plus fixes from @banterability, @punnerud, @vargad etc. Thanks all.

4.0.0

I've been super slow releasing this one, and there's a ton of new stuff.

Importantly, @keeganbrown managed to upgrade nan to 2.0.9 so this should work with newer versions of node.

Also a ton of new bindings from @jainanshul

Thanks to the many contributors I haven't named too.

3.2.0

Bugfixes from @mvines and @dropfen. Thanks!

3.1.0

Many bugfixes from @queuecumber, @emanuelandrada, @thomashoffmann1979, @paulmorrishill, @zankich, @morganrallen and @AVVS.

3.0.0

You wait ages for a release, and 2 come along at once...

This one is awesome. It adds prebuilt binaries, so you don't need to build opencv for the common platforms.

Many many thanks to @edgarsilva for awesome work here, and http://hybridgroup.com/ for hosting the binaries

2.0.0

  • Support for node 0.12
  • Camera Calibration Functions from @queuecumber
  • Fix for Nan 1.5.1 from @IMGNRY
  • More build fixes from @scanlime
  • Matrix crop prototype from @dbpieter
  • Many fixes from @madshall

Thanks to everyone that contributed!

1.0.0

Ok, let's do a proper semver release :)

The big news in this release is that thanks to some amazing work by @kaosat-dev, node-opencv now works with node 0.11.

There's also some general tidying up, including the examples by marcbachmann

Thanks all!

0.7.0

Matrix constructors, and contour access from @oskardahlberg and @emallson.

0.6.0

Many updates from the community, thank you to all.

Especially: @oskardahlberg, @salmanulhaq, @jcao75, @psayre23, @jhludwig , @coolblade, @ytham, @morganrallen and anyone I inadvertantly missed.

0.5.0

Lots more opencv functions added, and bugfixes from a large number of contributors. Thanks to all of them!

  • Allow args for HoughLinesP by @clkao in #112
  • matchTemplate and minMaxLoc by @ytham in #108
  • updated blockingWaitKey by @hybridgroup in #98

0.0.13 -> 0.4.0

( missing description... )

0.0.13

  • V Early support for face recognition - API is likely to change. Have fun!
  • API Change: VideoCapture.read now calls callback(err, im) instead of callback(im)

0.0.12

  • Matrix clone()
  • NamedWindow Support

0.0.11

  • Bug Fixes
  • ImageStream becomes ImageDataStream, and new ImageStream allows multiple images to be streamed as matrices, for example, with an object detection stream.
  • @ryansouza improved documentation
  • Correcting matrix constructor (thanks @gluxon)
  • @Michael Smith expanded Contours functionality.

Thanks all!

0.0.10

  • Bug Fixes
  • @Contra added code that allows thickness and color args for ellipse
  • Camshift Support
  • @jtlebi added bindings for erode, gaussianBlur, arcLength, approxPolyDP, isConvex, cornerCount
  • @gluxon added bindings for inRange

Thanks everyone!

0.0.9

  • toBuffer can now take a callback and be run async (re #21)