FaceDetectionFeature¶
-
class
oci.ai_vision.models.
FaceDetectionFeature
(**kwargs)¶ Bases:
oci.ai_vision.models.image_feature.ImageFeature
The face detection parameters.
Attributes
FEATURE_TYPE_FACE_DETECTION
str(object=’’) -> str FEATURE_TYPE_IMAGE_CLASSIFICATION
str(object=’’) -> str FEATURE_TYPE_OBJECT_DETECTION
str(object=’’) -> str FEATURE_TYPE_TEXT_DETECTION
str(object=’’) -> str feature_type
[Required] Gets the feature_type of this ImageFeature. max_results
Gets the max_results of this FaceDetectionFeature. should_return_landmarks
Gets the should_return_landmarks of this FaceDetectionFeature. Methods
__init__
(**kwargs)Initializes a new FaceDetectionFeature object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
FEATURE_TYPE_FACE_DETECTION
= 'FACE_DETECTION'¶
-
FEATURE_TYPE_IMAGE_CLASSIFICATION
= 'IMAGE_CLASSIFICATION'¶
-
FEATURE_TYPE_OBJECT_DETECTION
= 'OBJECT_DETECTION'¶
-
FEATURE_TYPE_TEXT_DETECTION
= 'TEXT_DETECTION'¶
-
__init__
(**kwargs)¶ Initializes a new FaceDetectionFeature object with values from keyword arguments. The default value of the
feature_type
attribute of this class isFACE_DETECTION
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - feature_type (str) – The value to assign to the feature_type property of this FaceDetectionFeature. Allowed values for this property are: “IMAGE_CLASSIFICATION”, “OBJECT_DETECTION”, “TEXT_DETECTION”, “FACE_DETECTION”
- max_results (int) – The value to assign to the max_results property of this FaceDetectionFeature.
- should_return_landmarks (bool) – The value to assign to the should_return_landmarks property of this FaceDetectionFeature.
-
feature_type
¶ [Required] Gets the feature_type of this ImageFeature. The type of image analysis requested. The allowed values are: - IMAGE_CLASSIFICATION: Label the image. - OBJECT_DETECTION: Identify objects in the image with bounding boxes. - TEXT_DETECTION: Recognize text at the word and line level. - FACE_DETECTION: Identify faces in the image with bounding boxes and face landmarks.
Allowed values for this property are: “IMAGE_CLASSIFICATION”, “OBJECT_DETECTION”, “TEXT_DETECTION”, “FACE_DETECTION”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The feature_type of this ImageFeature. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
max_results
¶ Gets the max_results of this FaceDetectionFeature. The maximum number of results to return.
Returns: The max_results of this FaceDetectionFeature. Return type: int
-
should_return_landmarks
¶ Gets the should_return_landmarks of this FaceDetectionFeature. Whether or not return face landmarks.
Returns: The should_return_landmarks of this FaceDetectionFeature. Return type: bool
-