Skip to content

Instantly share code, notes, and snippets.

@peterbraden
Created February 26, 2013 23:43
Show Gist options
  • Save peterbraden/5043452 to your computer and use it in GitHub Desktop.
Save peterbraden/5043452 to your computer and use it in GitHub Desktop.
WIP interface for easy face recognition from a stream of images (for example from AR Drone)
var matrixStream = new cv.ImageStream()
, faceRecognitionStream = new cv.ObjectDetectionStream(cv.FACES_CASCADE)
faceRecognitionStream.on('data', function(faces){
console.log("FACES!", faces);
})
matrixStream.pipe(faceRecognitionStream);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment