Face Detection

Step by Step on How to Use Face Detection

Parameters

In postman, send a POST to http://localhost:4004/NFFS-FD/v1/face-detection

{
  "images": ["base64"]
}

Response

Success

{
  "job": {
    "id": "202305040400176817fb8c17c18d181bda583a6c71c615fcca9cfd6d1468057b01505bbe6f6c4d42a",
    "result": {
      "analytic_type": "ETLE FACE DETECTION",
      "result": [
        {
          "face_detections": [
            {
              "confidence": 0.9998117089271545,
              "height": 0.1232997477054596,
              "left": 0.26472410559654236,
              "top": 0.11068135499954224,
              "width": 0.11786815524101257
            }
          ]
        }
      ],
      "status": "success"
    }
  },
  "message": "Face Detection Analytic Success",
  "ok": true
}

Error

{
  "job": {
    "id": "hex",
    "result": null
  },
  "message": "string",
  "ok": false
}

Last updated