Skip to content

Commit c0db56e

Browse files
Merge pull request #141 from regulaforensics/44973f67
Update descriptions
2 parents 387eeb3 + e851a2a commit c0db56e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

regula/facesdk/webclient/gen/api/match_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def match_with_http_info(self, match_request, **kwargs): # noqa: E501
323323
def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501
324324
"""match and search (1:1 + 1:N) # noqa: E501
325325
326-
To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, match is not performed and only search is carried out. # noqa: E501
326+
To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. At least two photos are required. If, after processing two or more photos, only one face is detected across them, the match step is skipped, and only the search is carried out. # noqa: E501
327327
This method makes a synchronous HTTP request by default. To make an
328328
asynchronous HTTP request, please pass async_req=True
329329
@@ -355,7 +355,7 @@ def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501
355355
def match_and_search_with_http_info(self, match_and_search_request, **kwargs): # noqa: E501
356356
"""match and search (1:1 + 1:N) # noqa: E501
357357
358-
To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. If only one person is identified, match is not performed and only search is carried out. # noqa: E501
358+
To compare several images from a document and look up a person in the database in one request, use POST `/api/match_and_search`. In this case, the calculation of the descriptor will be performed only once, as opposed to using two requests for the same operation. At least two photos are required. If, after processing two or more photos, only one face is detected across them, the match step is skipped, and only the search is carried out. # noqa: E501
359359
This method makes a synchronous HTTP request by default. To make an
360360
asynchronous HTTP request, please pass async_req=True
361361

regula/facesdk/webclient/gen/model/match_and_search_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def tag(self, tag):
109109
def images(self):
110110
"""Gets the images of this MatchAndSearchRequest. # noqa: E501
111111
112-
Person's images. # noqa: E501
112+
An array of images to be processed. At least two images must be provided. # noqa: E501
113113
114114
:return: The images of this MatchAndSearchRequest. # noqa: E501
115115
:rtype: [MatchAndSearchRequestImages]
@@ -120,7 +120,7 @@ def images(self):
120120
def images(self, images):
121121
"""Sets the images of this MatchAndSearchRequest.
122122
123-
Person's images. # noqa: E501
123+
An array of images to be processed. At least two images must be provided. # noqa: E501
124124
125125
:param images: The images of this MatchAndSearchRequest. # noqa: E501
126126
:type images: [MatchAndSearchRequestImages]

regula/facesdk/webclient/gen/model/match_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def tag(self, tag):
9898
def images(self):
9999
"""Gets the images of this MatchRequest. # noqa: E501
100100
101-
All images included in the comparison. # noqa: E501
101+
An array of images to be processed. At least two images must be provided. # noqa: E501
102102
103103
:return: The images of this MatchRequest. # noqa: E501
104104
:rtype: [MatchImage]
@@ -109,7 +109,7 @@ def images(self):
109109
def images(self, images):
110110
"""Sets the images of this MatchRequest.
111111
112-
All images included in the comparison. # noqa: E501
112+
An array of images to be processed. At least two images must be provided. # noqa: E501
113113
114114
:param images: The images of this MatchRequest. # noqa: E501
115115
:type images: [MatchImage]

0 commit comments

Comments
 (0)