ObjectProperties

class oci.ai_vision.models.ObjectProperties(**kwargs)

Bases: object

Properties associated with the object.

Methods

__init__(**kwargs) Initializes a new ObjectProperties object with values from keyword arguments.

Attributes

embeddings Gets the embeddings of this ObjectProperties.
landmarks Gets the landmarks of this ObjectProperties.
quality_score Gets the quality_score of this ObjectProperties.
__init__(**kwargs)

Initializes a new ObjectProperties object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • quality_score (float) – The value to assign to the quality_score property of this ObjectProperties.
  • landmarks (list[oci.ai_vision.models.Landmark]) – The value to assign to the landmarks property of this ObjectProperties.
  • embeddings (list[float]) – The value to assign to the embeddings property of this ObjectProperties.
embeddings

Gets the embeddings of this ObjectProperties. The facial feature vectors of detected faces.

Returns:The embeddings of this ObjectProperties.
Return type:list[float]
landmarks

Gets the landmarks of this ObjectProperties. Face landmarks.

Returns:The landmarks of this ObjectProperties.
Return type:list[oci.ai_vision.models.Landmark]
quality_score

Gets the quality_score of this ObjectProperties. The quality score of the face detected, between 0 and 1.

Returns:The quality_score of this ObjectProperties.
Return type:float