0

我在 JavaScript 中为 Microsoft Face API 使用牛津项目,当我使用“识别”功能时,我收到“无效的请求正文”。

                    client.face.identify({
                       faces: arrayFaceId,
                       personGroupId: "groupId",
                       maxNumOfCandidatesReturned: 1,
                       confidenceThreshold: 0.8
                    }).then(function(response){
                       console.log('Response ' + JSON.stringify(response.personId));
                    }, function(error){
                     console.log("Error2"+JSON.stringify(error));
                   });

任何人都知道我该如何解决它?

4

1 回答 1

1

有问题的 API 采用常规参数,而不是您指定的对象。所以:

client.face.identify(arrayFaceId, "groupId", 1, 0.8)
    .then(function(response) {
        console.log('Response ' + JSON.stringify(response.personId));
    })
    .catch(function(error) {
        console.log("Error " + JSON.stringify(error));
    });
于 2017-04-25T05:14:18.283 回答