Eye Age API Response Scheme

Haut.AI provides an AI algorithm that estimates the age in years of a particular face based on the eye area only.

Description

This parameter is predicted based on the part of the face that is most prone to the aging process: the areas around the eyes. Eye age reflects the pace of aging. The algorithm is based on the PhotoAgeClock paper.

"algorithm_tech_name": "eye_age"

area_name

The algorithm returns metrics for the following facial areas:

  • face i.e., an average of the predictions for the left and right eye

  • left_eye_outer

  • right_eye_outer

main_metric

The main metric estimates the eye age in years of a particular face image

"main_metric": {
                "value": 21,
                "widget_type": "numeric",
                "name": "Left Eye Age",
                "tech_name": "left_eye_age",
                "widget_meta": null
            },
  • value is the estimated eye age in years

  • "widget_type": "numeric"

  • name possible values are:

    • "Eye Age"

    • "Left Eye Age"

    • "Right Eye Age"

  • tech_namepossible values are:

    • "eye_age"

    • "left_eye_age"

    • "right_eye_age"

sub_metrics

The algorithm doesn't return any

masks_restored

The algorithm doesn't return any

masks_original

The algorithm doesn't return any

Example (JSON)

{
    "algorithm_tech_name": "eye_age",
    "image_type": "selfie",
    "area_results": [
        {
            "area_name": "face",
            "main_metric": {
                "value": 24,
                "widget_type": "numeric",
                "name": "Eye Age",
                "tech_name": "eye_age",
                "widget_meta": null
            },
            "sub_metrics": null
        },
        {
            "area_name": "left_eye_outer",
            "main_metric": {
                "value": 21,
                "widget_type": "numeric",
                "name": "Left Eye Age",
                "tech_name": "left_eye_age",
                "widget_meta": null
            },
            "sub_metrics": null
        },
        {
            "area_name": "right_eye_outer",
            "main_metric": {
                "value": 27,
                "widget_type": "numeric",
                "name": "Right Eye Age",
                "tech_name": "right_eye_age",
                "widget_meta": null
            },
            "sub_metrics": null
        }
    ],
    "masks_restored": null,
    "masks_original": null
}

Last updated