我知道这似乎是一个相当广泛的问题,但我一直无法弄清如何使用Android Studio中的Microsoft Face API在“人物组”中创建人物。
我尝试使用以下代码在Android中创建CreatePersonResult
对象:
try {
CreatePersonResult person1 = faceServiceClient.createPerson(personGroupId, "Bob", "My Friends");
Toast.makeText(getApplicationContext(), "Created Person called Bob", Toast.LENGTH_LONG).show();
} catch (Exception e) {
Toast.makeText(getApplicationContext(), "Creation failed: " + e.getMessage(), Toast.LENGTH_LONG).show();
}
上面的代码输出:“创建失败:空” 。这意味着由于某些原因,Exception
是null
。
在Visual Studio中,要创建一个Person
,我只需要执行以下操作:
CreatePersonResult person1 = await faceServiceClient.CreatePersonAsync(personGroupId, "Bob");
有人知道我如何在Android的人员组中创建Person
吗?我一直无法弄清楚如何在Android中执行此操作,但是找到了大量有关Visual Studio的教程。