Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions regula/facesdk/webclient/gen/api/match_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def match_with_http_info(self, match_request, **kwargs): # noqa: E501
def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501
"""match and search (1:1 + 1:N) # noqa: E501

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
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
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

Expand Down Expand Up @@ -355,7 +355,7 @@ def match_and_search(self, match_and_search_request, **kwargs): # noqa: E501
def match_and_search_with_http_info(self, match_and_search_request, **kwargs): # noqa: E501
"""match and search (1:1 + 1:N) # noqa: E501

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
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
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def tag(self, tag):
def images(self):
"""Gets the images of this MatchAndSearchRequest. # noqa: E501

Person's images. # noqa: E501
An array of images to be processed. At least two images must be provided. # noqa: E501

:return: The images of this MatchAndSearchRequest. # noqa: E501
:rtype: [MatchAndSearchRequestImages]
Expand All @@ -120,7 +120,7 @@ def images(self):
def images(self, images):
"""Sets the images of this MatchAndSearchRequest.

Person's images. # noqa: E501
An array of images to be processed. At least two images must be provided. # noqa: E501

:param images: The images of this MatchAndSearchRequest. # noqa: E501
:type images: [MatchAndSearchRequestImages]
Expand Down
4 changes: 2 additions & 2 deletions regula/facesdk/webclient/gen/model/match_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def tag(self, tag):
def images(self):
"""Gets the images of this MatchRequest. # noqa: E501

All images included in the comparison. # noqa: E501
An array of images to be processed. At least two images must be provided. # noqa: E501

:return: The images of this MatchRequest. # noqa: E501
:rtype: [MatchImage]
Expand All @@ -109,7 +109,7 @@ def images(self):
def images(self, images):
"""Sets the images of this MatchRequest.

All images included in the comparison. # noqa: E501
An array of images to be processed. At least two images must be provided. # noqa: E501

:param images: The images of this MatchRequest. # noqa: E501
:type images: [MatchImage]
Expand Down