Find Face Properties
This method is used to extract some properties from the photo sent on the request. Those properties returned by the algorithm are age, gender, emotions.
Find-face-properties
Headers
Name
Type
Description
Request Body
Name
Type
Description
// Properties found on photo
{
"status": true,
"data": {
"message": "FACE_RECOGNIZED_WITH_SUCCESS"
"properties": {
"age": 32,
"gender": 'male',
"emotions": ['neutral', 'happy']
},
}
}
// Find Id by Face failed.
{
"status": false,
"data": {
"message": "FACE_PROPERTIES_FAILED",
"reason": "No faces found on 'photo'"
}
}
// Find Id by Face failed.
{
"status": false,
"data": {
"message": "MULTIPLE_FACES_DETECTED"
}
}Success 200
Last updated
Was this helpful?