AWS Rekognition/Facial Recognition
AWS REKOGNITION
Blitline support for Amazons Rekognition Service. Through AWS Rekognition you get get valuable information about faces and items inside an image.
AWS Rekognition is able to identify (with a certain percent of accuracy) the items that are present inside an image

http://docs.aws.amazon.com/rek...
AWS Rekognition is also able to identify faces as well as information about the faces that are present in a image.

http://docs.aws.amazon.com/rekognition/latest/dg/detect-faces-console.html
You can get this information from your Blitline processed images simply by adding “detect_faces” or “detect_labels” to your base JSON.
The resulting JSON will contain the metadata from AWS about those images.
HOW DO I USE IT?
Just add the “detect_faces” or “detect_labels” option to your root JSON.
{
"application_id":"YOUR_APP_ID",
"src":"https://s3.amazonaws.com/img.blitline/skysmall.jpg",
"v" : 1.22,
"detect_labels" : true,
"functions":[
{
"name":"resize_to_fit",
"params":{
"width": 400
},
"save":{
"save_profiles" : true,
"image_identifier":"MY_CLIENT_ID"
}
}
]
}