ricardobeat / lambda-face.js

Node.JS client for the Lambda Labs face-detection API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lambda-face.js

Node.JS client for the Lambda Labs face-detection API.

##Usage

var Face = require('./face')

api = new Face(PUBLIC_KEY, PRIVATE_KEY)

api.detect(image, function(err, data){
    if (err) throw err
    console.log(data.photos[0].tags)
})

See example/test.js.

http://api.lambdal.com/

Not published to NPM.

About

Node.JS client for the Lambda Labs face-detection API


Languages

Language:JavaScript 59.2%Language:CoffeeScript 40.8%