所以我得到了一个年龄错误未定义。这是项目牛津代码。我的API密钥已更新。
var oxford = require('project-oxford');
client2 = new oxford.Client(//my api key);
client2.face.detect({
path: '../practiceCode/cropped.jpeg',
analyzesAge: true,
analyzesGender: true
}).then(function (response) {
console.log('The age is: ' + response[0].attributes.age);
console.log('The gender is: ' + response[0].attributes.gender);
}).catch(function (err) {
console.log(err);
});