VideoTrackingFrame¶
-
class
oci.ai_vision.models.
VideoTrackingFrame
(**kwargs)¶ Bases:
object
A frame capturing a tracked object.
Methods
__init__
(**kwargs)Initializes a new VideoTrackingFrame object with values from keyword arguments. Attributes
bounding_polygon
[Required] Gets the bounding_polygon of this VideoTrackingFrame. confidence
[Required] Gets the confidence of this VideoTrackingFrame. properties
Gets the properties of this VideoTrackingFrame. time_offset_ms
[Required] Gets the time_offset_ms of this VideoTrackingFrame. -
__init__
(**kwargs)¶ Initializes a new VideoTrackingFrame object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - time_offset_ms (int) – The value to assign to the time_offset_ms property of this VideoTrackingFrame.
- confidence (float) – The value to assign to the confidence property of this VideoTrackingFrame.
- bounding_polygon (oci.ai_vision.models.BoundingPolygon) – The value to assign to the bounding_polygon property of this VideoTrackingFrame.
- properties (list[oci.ai_vision.models.ObjectProperty]) – The value to assign to the properties property of this VideoTrackingFrame.
-
bounding_polygon
¶ [Required] Gets the bounding_polygon of this VideoTrackingFrame.
Returns: The bounding_polygon of this VideoTrackingFrame. Return type: oci.ai_vision.models.BoundingPolygon
-
confidence
¶ [Required] Gets the confidence of this VideoTrackingFrame. The confidence score, between 0 and 1.
Returns: The confidence of this VideoTrackingFrame. Return type: float
-
properties
¶ Gets the properties of this VideoTrackingFrame. Properties associated with the tracked object in the frame.
Returns: The properties of this VideoTrackingFrame. Return type: list[oci.ai_vision.models.ObjectProperty]
-
time_offset_ms
¶ [Required] Gets the time_offset_ms of this VideoTrackingFrame. Time offset(Milliseconds) of the frame.
Returns: The time_offset_ms of this VideoTrackingFrame. Return type: int
-