你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Face List Operations - Get Face Lists
列出人脸列表的 faceListId、名称、userData 和 recognitionModel。
若要在人脸列表中获取人脸信息,请使用“获取人脸列表”。
GET {endpoint}/face/{apiVersion}/facelists
GET {endpoint}/face/{apiVersion}/facelists?returnRecognitionModel={returnRecognitionModel}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
api
|
path | True |
string |
API 版本 |
endpoint
|
path | True |
string (uri) |
支持的认知服务终结点(协议和主机名,例如:https://{resource-name}.cognitiveservices.azure.com)。 |
return
|
query |
boolean |
返回“recognitionModel”或“not”。 默认值为 false。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
成功的调用返回人脸列表数组。 |
|
Other Status Codes |
意外的错误响应。 标头 x-ms-error-code: string |
安全性
Ocp-Apim-Subscription-Key
Azure AI 人脸订阅的密钥。
类型:
apiKey
在:
header
AADToken
Azure Active Directory OAuth2 流
类型:
oauth2
流向:
accessCode
授权 URL:
https://api.example.com/oauth2/authorize
令牌 URL:
https://api.example.com/oauth2/token
作用域
名称 | 说明 |
---|---|
https://cognitiveservices.azure.com/.default |
示例
Get FaceLists
示例请求
GET {endpoint}/face/v1.2-preview.1/facelists?returnRecognitionModel=True
示例响应
[
{
"name": "your_face_list_name",
"userData": "your_user_data",
"recognitionModel": "recognition_01",
"faceListId": "your_face_list_id"
}
]
定义
名称 | 说明 |
---|---|
Face |
错误对象。 有关人脸服务返回的错误代码和消息的综合详细信息,请参阅以下链接:https://aka.ms/face-error-codes-and-messages。 |
Face |
包含错误详细信息的响应。 |
Face |
列表人脸列表的人脸列表项。 |
Recognition |
人脸的识别模型。 |
FaceError
错误对象。 有关人脸服务返回的错误代码和消息的综合详细信息,请参阅以下链接:https://aka.ms/face-error-codes-and-messages。
名称 | 类型 | 说明 |
---|---|---|
code |
string |
服务器定义的错误代码集之一。 |
message |
string |
错误的人工可读表示形式。 |
FaceErrorResponse
包含错误详细信息的响应。
名称 | 类型 | 说明 |
---|---|---|
error |
错误对象。 |
FaceListItem
列表人脸列表的人脸列表项。
名称 | 类型 | 说明 |
---|---|---|
faceListId |
string minLength: 1maxLength: 64 pattern: ^[a-z0-9-_]+$ |
有效字符是小写字母或数字或“-”或“_”,最大长度为 64。 |
name |
string minLength: 1maxLength: 128 |
用户定义的名称,最大长度为 128。 |
recognitionModel |
识别模型的名称。 提取人脸特征并与检测到的 faceId 相关联时,将使用识别模型。 |
|
userData |
string maxLength: 16384 |
可选用户定义数据。 长度不应超过 16K。 |
RecognitionModel
人脸的识别模型。
值 | 说明 |
---|---|
recognition_01 |
“Detect”的默认识别模型。 2019 年 3 月之前创建的所有 faceId 都与此识别模型绑定在一起。 |
recognition_02 |
识别模型于 2019 年 3 月发布。 |
recognition_03 |
识别模型于 2020 年 5 月发布。 |
recognition_04 |
识别模型于 2021 年 2 月发布。 建议使用此识别模型来提高识别准确性。 |