kairos-api

0.1.3 • Public • Published

Kairos face recognition API for Node.js

NPM version

Installation

npm install kairos-api

Usage

var Kairos = require('kairos-api');
var client = new Kairos('app_id', 'app_key');
 
var params = {
  image: 'http://media.kairos.com/kairos-elizabeth.jpg',
  subject_id: 'subtest1',
  gallery_name: 'gallerytest1',
  selector: 'SETPOSE'
};
 
client.enroll(params)   // return Promise
  //  result: {
  //    status: <http status code>,
  //    body: <data>
  //  }
  .then(function(result) { ... })
  // err -> array: jsonschema validate errors
  //        or throw Error
  .catch(function(err) { ... });

For more params pattern, see offical doc.

Functions

  • client.enroll(params)
  • client.recognize(params)
  • client.detect(params)
  • client.galleryListAll()
  • client.galleryView(params)
  • client.galleryRemove(params)
  • client.galleryRemoveSubject(params)

LICENSE

MIT

Readme

Keywords

Package Sidebar

Install

npm i kairos-api

Weekly Downloads

3

Version

0.1.3

License

MIT

Last publish

Collaborators

  • jhen0409