Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ def verify_face_to_face_async(face_id1, face_id2, custom_headers = nil)
# * Optional parameters including faceId, landmarks, and attributes. Attributes
# include age, gender, headPose, smile, facialHair, glasses, emotion, hair,
# makeup, occlusion, accessories, blur, exposure and noise.
# * The extracted face feature, instead of the actual image, will be stored on
# * No image will be stored. Only the extracted face feature will be stored on
# server. The faceId is an identifier of the face feature and will be used in
# [Face -
# Identify](/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395239),
Expand All @@ -832,8 +832,7 @@ def verify_face_to_face_async(face_id1, face_id2, custom_headers = nil)
# or being occluded, or wrong image orientation.
# * Attributes (age, gender, headPose, smile, facialHair, glasses, emotion,
# hair, makeup, occlusion, accessories, blur, exposure and noise) may not be
# perfectly accurate. HeadPose's pitch value is a reserved field and will
# always return 0.
# perfectly accurate.
# * Different 'recognitionModel' values are provided. If follow-up operations
# like Verify, Identify, Find Similar are needed, please specify the
# recognition model with 'recognitionModel' parameter. The default value for
Expand All @@ -843,7 +842,6 @@ def verify_face_to_face_async(face_id1, face_id2, custom_headers = nil)
# More details, please refer to [How to specify a recognition
# model](https://docs.microsoft.com/en-us/azure/cognitive-services/face/face-api-how-to-topics/specify-recognition-model)
#
#
# @param url [String] Publicly reachable URL of an image
# @param return_face_id [Boolean] A value indicating whether the operation
# should return faceIds of detected faces.
Expand Down Expand Up @@ -879,7 +877,7 @@ def detect_with_url(url, return_face_id = true, return_face_landmarks = false, r
# * Optional parameters including faceId, landmarks, and attributes. Attributes
# include age, gender, headPose, smile, facialHair, glasses, emotion, hair,
# makeup, occlusion, accessories, blur, exposure and noise.
# * The extracted face feature, instead of the actual image, will be stored on
# * No image will be stored. Only the extracted face feature will be stored on
# server. The faceId is an identifier of the face feature and will be used in
# [Face -
# Identify](/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395239),
Expand All @@ -902,8 +900,7 @@ def detect_with_url(url, return_face_id = true, return_face_landmarks = false, r
# or being occluded, or wrong image orientation.
# * Attributes (age, gender, headPose, smile, facialHair, glasses, emotion,
# hair, makeup, occlusion, accessories, blur, exposure and noise) may not be
# perfectly accurate. HeadPose's pitch value is a reserved field and will
# always return 0.
# perfectly accurate.
# * Different 'recognitionModel' values are provided. If follow-up operations
# like Verify, Identify, Find Similar are needed, please specify the
# recognition model with 'recognitionModel' parameter. The default value for
Expand All @@ -913,7 +910,6 @@ def detect_with_url(url, return_face_id = true, return_face_landmarks = false, r
# More details, please refer to [How to specify a recognition
# model](https://docs.microsoft.com/en-us/azure/cognitive-services/face/face-api-how-to-topics/specify-recognition-model)
#
#
# @param url [String] Publicly reachable URL of an image
# @param return_face_id [Boolean] A value indicating whether the operation
# should return faceIds of detected faces.
Expand Down Expand Up @@ -948,7 +944,7 @@ def detect_with_url_with_http_info(url, return_face_id = true, return_face_landm
# * Optional parameters including faceId, landmarks, and attributes. Attributes
# include age, gender, headPose, smile, facialHair, glasses, emotion, hair,
# makeup, occlusion, accessories, blur, exposure and noise.
# * The extracted face feature, instead of the actual image, will be stored on
# * No image will be stored. Only the extracted face feature will be stored on
# server. The faceId is an identifier of the face feature and will be used in
# [Face -
# Identify](/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395239),
Expand All @@ -971,8 +967,7 @@ def detect_with_url_with_http_info(url, return_face_id = true, return_face_landm
# or being occluded, or wrong image orientation.
# * Attributes (age, gender, headPose, smile, facialHair, glasses, emotion,
# hair, makeup, occlusion, accessories, blur, exposure and noise) may not be
# perfectly accurate. HeadPose's pitch value is a reserved field and will
# always return 0.
# perfectly accurate.
# * Different 'recognitionModel' values are provided. If follow-up operations
# like Verify, Identify, Find Similar are needed, please specify the
# recognition model with 'recognitionModel' parameter. The default value for
Expand All @@ -982,7 +977,6 @@ def detect_with_url_with_http_info(url, return_face_id = true, return_face_landm
# More details, please refer to [How to specify a recognition
# model](https://docs.microsoft.com/en-us/azure/cognitive-services/face/face-api-how-to-topics/specify-recognition-model)
#
#
# @param url [String] Publicly reachable URL of an image
# @param return_face_id [Boolean] A value indicating whether the operation
# should return faceIds of detected faces.
Expand Down
Loading