TrackingType

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

Bases: object

Details of what to track.

Methods

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

Attributes

detection_model_id Gets the detection_model_id of this TrackingType.
max_results Gets the max_results of this TrackingType.
objects [Required] Gets the objects of this TrackingType.
should_return_landmarks Gets the should_return_landmarks of this TrackingType.
tracking_model_id Gets the tracking_model_id of this TrackingType.
__init__(**kwargs)

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

Parameters:
  • objects (list[str]) – The value to assign to the objects property of this TrackingType.
  • detection_model_id (str) – The value to assign to the detection_model_id property of this TrackingType.
  • tracking_model_id (str) – The value to assign to the tracking_model_id property of this TrackingType.
  • max_results (int) – The value to assign to the max_results property of this TrackingType.
  • should_return_landmarks (bool) – The value to assign to the should_return_landmarks property of this TrackingType.
detection_model_id

Gets the detection_model_id of this TrackingType. The detection model OCID.

Returns:The detection_model_id of this TrackingType.
Return type:str
max_results

Gets the max_results of this TrackingType. The maximum number of results to return.

Returns:The max_results of this TrackingType.
Return type:int
objects

[Required] Gets the objects of this TrackingType. List of the objects to be tracked.

Returns:The objects of this TrackingType.
Return type:list[str]
should_return_landmarks

Gets the should_return_landmarks of this TrackingType. Whether or not return face landmarks.

Returns:The should_return_landmarks of this TrackingType.
Return type:bool
tracking_model_id

Gets the tracking_model_id of this TrackingType. The tracking model OCID.

Returns:The tracking_model_id of this TrackingType.
Return type:str