Project

kairos

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wraper of Kairos Face Detection and Recognition API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.4.6
>= 1.6.1
 Project Readme

Note: This gem is still under development, create issues if you meet any problem when using it github.com/chrisallick/kairos/issues

Kairos is a ruby library of Kairos Face Detection and Recognition API.

The library itself is completely “modeled after” (ripped off from) github.com/rociiu/face by rociiu.com/

Getting Started ¶ ↑

gem install kairos

irb
>> require 'kairos'
>> client = Kairos.get_client(:app_id => 'your_api_app_id', :app_key => 'your_api_app_key')

Detect faces from a URL:

# returns a Hash not a raw JSON string
>> puts client.detect(:urls => 'http://img3.wikia.nocookie.net/__cb20120804165550/assassinscreed/images/e/ed/New_engine_face_model_test_by_Michel_Thibault.png')

Author: Chris Allick (chrisallick@gmail.com)