Created
February 26, 2013 23:43
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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