VideoTrackedObject¶
-
class
oci.ai_vision.models.
VideoTrackedObject
(**kwargs)¶ Bases:
object
Tracked object in a video.
Methods
__init__
(**kwargs)Initializes a new VideoTrackedObject object with values from keyword arguments. Attributes
name
[Required] Gets the name of this VideoTrackedObject. object_id
[Required] Gets the object_id of this VideoTrackedObject. properties
Gets the properties of this VideoTrackedObject. segments
[Required] Gets the segments of this VideoTrackedObject. -
__init__
(**kwargs)¶ Initializes a new VideoTrackedObject object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this VideoTrackedObject.
- object_id (int) – The value to assign to the object_id property of this VideoTrackedObject.
- properties (oci.ai_vision.models.VideoTrackedObjectProperties) – The value to assign to the properties property of this VideoTrackedObject.
- segments (list[oci.ai_vision.models.VideoTrackedObjectSegment]) – The value to assign to the segments property of this VideoTrackedObject.
-
name
¶ [Required] Gets the name of this VideoTrackedObject. Name of the object category label.
Returns: The name of this VideoTrackedObject. Return type: str
-
object_id
¶ [Required] Gets the object_id of this VideoTrackedObject. Unique identifier for the object.
Returns: The object_id of this VideoTrackedObject. Return type: int
-
properties
¶ Gets the properties of this VideoTrackedObject.
Returns: The properties of this VideoTrackedObject. Return type: oci.ai_vision.models.VideoTrackedObjectProperties
-
segments
¶ [Required] Gets the segments of this VideoTrackedObject. Segments for the tracked object.
Returns: The segments of this VideoTrackedObject. Return type: list[oci.ai_vision.models.VideoTrackedObjectSegment]
-