0

在 Azure 认知服务人脸 API(参见例如https://azure.microsoft.com/en-us/services/cognitive-services/face)中,以下响应字段似乎从未触发:

  1. headPose:pitch(保留场)
  2. 额头被遮挡
  3. 眼睛被遮挡

我是在滥用这些,还是有针对它们的计划,或者没有计划激活它们?

4

1 回答 1

1

如果您在此处查看 API 文档:

  • 对于headPose,它说:

编辑 2019 年 6 月 13 日:医生说

HeadPose 的音高值是保留字段,将始终返回 0

现在改为:

headPose:面部方向的 3-D 滚动/偏航/俯仰角。

  • 对于foreheadOccluded价值,我在以下测试中成功获得true价值,头上有一个帽子(对不起样品,没有很快找到其他东西!):

    • 网址:https://westeurope.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=occlusion
    • 发送的内容:{ "url": "https://www.knijff.com/markmatters/wp-content/uploads/2015/10/Trump-Red-Hat.jpg" }

额头遮挡样本

收到的回复:

[{
  "faceId": "e6ae42a6-b008-4859-9bf5-1ae22e4b71a7",
  "faceRectangle": {
    "top": 118,
    "left": 212,
    "width": 276,
    "height": 276
  },
  "faceAttributes": {
    "occlusion": {
      "foreheadOccluded": true,
      "eyeOccluded": false,
      "mouthOccluded": false
    }
  }
}]
  • 对于该eyeOccluded值,我在以下测试中成功获得了truefalse值,其中同一个人出现了 2 次,其中一个在眼睛上方有一个矩形:

    • 网址:https://westeurope.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=occlusion
    • 发送的内容:{ "url": "https://jov.arvojournals.org/data/Journals/JOV/933685/i1534-7362-14-13-14-f09.png" }

眼睛被遮挡的样本

收到的回复(请注意第一张脸是正确的):

[{
  "faceId": "4c2eb52e-2fd4-456c-bdae-694df1adc571",
  "faceRectangle": {
    "top": 204,
    "left": 683,
    "width": 297,
    "height": 297
  },
  "faceAttributes": {
    "occlusion": {
      "foreheadOccluded": false,
      "eyeOccluded": false,
      "mouthOccluded": true
    }
  }
}, {
  "faceId": "5b9dc938-e6cf-4fe9-8e6c-8649fef44e7a",
  "faceRectangle": {
    "top": 213,
    "left": 107,
    "width": 275,
    "height": 275
  },
  "faceAttributes": {
    "occlusion": {
      "foreheadOccluded": false,
      "eyeOccluded": true,
      "mouthOccluded": false
    }
  }
}]
于 2018-11-01T22:09:54.157 回答