认知面孔中的personGroupId是什么?

时间:2018-09-30 09:10:45

标签: image-recognition microsoft-cognitive azure-cognitive-services

认知面孔中的personGroupId是什么?

我的错误是这个


cognitive_face.util.CognitiveFaceException:调用Cognitive Face API时出错:

status_code: 404
code: PersonGroupNotFound
message: Person group is not found.
Parameter name: personGroupId

我的代码是

res = CF.person.create(personGroupId, str(sys.argv[1]))

1 个答案:

答案 0 :(得分:2)

人员组是上载的人员数据的容器,其中包括面部图像和面部识别功能。

要创建一个人,您需要先创建一个组。您将提供人员组ID,此ID以后可用于创建人员(或更多人)。

您可以先使用以下代码创建组:

res = CF.person_group.create('mygroup')

组ID的有效字符包括数字,小写英文字母,“-”和“ _”。 personGroupId的最大长度为64。