3D Face Reconstruction

API METHODS

/run_pipeline

Getting face texture and head model parameters of 3D head model from photo.

For visualization use GLB Constructor Service.

Model parameters:

Method for 3D Face Reconstruction

POST https://api.metahumansdk.io/face_recon/run_pipeline

Getting face texture and head model parameters of 3D head model from photo.

Request Body

{
  "result": {
    "face": {
      "textureUrl": "/static/input_image_texture.png",
      "blendShapes": [
        -1.7523525953292847,
        ...
        1.5906388759613037
      ],
      "blinkCorrectionCoeff": 1.0096107066555675
    },
    "hair": {
      "color": "#160406",
      "type": "long_straight"
    },
    "skin": {
      "color": "#965e53"
    },
    "accessories": [],
    "gender": "Female"
  }
}

Last updated