Skip to content

Commit

Permalink
Fixes for largefacelist and identify (#15187)
Browse files Browse the repository at this point in the history
Co-authored-by: Yang Chen <yachen4@microsoft.com>
  • Loading branch information
msyache and Yang Chen authored Aug 10, 2021
1 parent 1d5f00d commit be7b604
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1972,6 +1972,22 @@
"parameters": [
{
"$ref": "#/parameters/returnRecognitionModel"
},
{
"name": "start",
"description": "Starting large face list id to return (used to list a range of large face lists).",
"in": "query",
"required": false,
"type": "string"
},
{
"name": "top",
"description": "Number of large face lists to return starting with the large face list id indicated by the 'start' parameter.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 1,
"maximum": 1000
}
],
"responses": {
Expand Down Expand Up @@ -4491,10 +4507,10 @@
},
"maxNumOfCandidatesReturned": {
"type": "integer",
"description": "The range of maxNumOfCandidatesReturned is between 1 and 5 (default is 1).",
"description": "The range of maxNumOfCandidatesReturned is between 1 and 100 (default is 1).",
"default": 1,
"minimum": 1,
"maximum": 5
"maximum": 100
},
"confidenceThreshold": {
"description": "Confidence threshold of identification, used to judge whether one face belong to one person. The range of confidenceThreshold is [0, 1] (default specified by algorithm).",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1972,6 +1972,22 @@
"parameters": [
{
"$ref": "#/parameters/returnRecognitionModel"
},
{
"name": "start",
"description": "Starting large face list id to return (used to list a range of large face lists).",
"in": "query",
"required": false,
"type": "string"
},
{
"name": "top",
"description": "Number of large face lists to return starting with the large face list id indicated by the 'start' parameter.",
"in": "query",
"required": false,
"type": "integer",
"minimum": 1,
"maximum": 1000
}
],
"responses": {
Expand Down Expand Up @@ -3552,10 +3568,10 @@
},
"maxNumOfCandidatesReturned": {
"type": "integer",
"description": "The range of maxNumOfCandidatesReturned is between 1 and 5 (default is 1).",
"description": "The range of maxNumOfCandidatesReturned is between 1 and 100 (default is 1).",
"default": 1,
"minimum": 1,
"maximum": 5
"maximum": 100
},
"confidenceThreshold": {
"description": "Confidence threshold of identification, used to judge whether one face belong to one person. The range of confidenceThreshold is [0, 1] (default specified by algorithm).",
Expand Down

0 comments on commit be7b604

Please sign in to comment.