我知道这似乎是一个相当广泛的问题,但我一直无法弄清楚如何在 Android Studio 中使用 Microsoft Face API 在 Person Group 中创建一个 Person。
我尝试使用以下代码CreatePersonResult
在 Android 中创建对象:
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();
}
上面的代码输出:“创建失败:null” ,这Exception
null
意味着出于某种原因。
在 Visual Studio 中,要创建一个Person
我只需执行以下操作:
CreatePersonResult person1 = await faceServiceClient.CreatePersonAsync(personGroupId, "Bob");
有谁知道我如何Person
在 Android 中创建人组?我一直无法弄清楚如何在 Android 中做到这一点,但找到了大量的 Visual Studio 教程。