npm install kairos-api
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.
- client.enroll(params)
- client.recognize(params)
- client.detect(params)
- client.galleryListAll()
- client.galleryView(params)
- client.galleryRemove(params)
- client.galleryRemoveSubject(params)
Test on RapidAPI