Operations - Face Enhancement

Operations / Face Enhancement

Face restoration, when requested, will quickly detect faces in input image and enhance the fine details including hair, lips, eye contour or shades and texture of skin.

To leverage face enhancement simply pass "enhance": true within the "face" hash:

{
    "face": {
        "enhance": true
    }
}

An example cURL request with Image Fetch method of face enhancement will look like the following:

curl https://api.supares.com/1.0/fetch
     --user your-api-key: \
     --header "Content-Type: application/json" \
     --data '{
         "url": "https://www.website.com/image.jpg",
         "face": {
             "enhance": true
         }
      }'