VideoStreamObject¶
-
class
oci.ai_vision.models.
VideoStreamObject
(**kwargs)¶ Bases:
object
Tracked object in a video stream.
Methods
__init__
(**kwargs)Initializes a new VideoStreamObject object with values from keyword arguments. Attributes
bounding_polygon
[Required] Gets the bounding_polygon of this VideoStreamObject. confidence
[Required] Gets the confidence of this VideoStreamObject. name
[Required] Gets the name of this VideoStreamObject. object_id
Gets the object_id of this VideoStreamObject. properties
Gets the properties of this VideoStreamObject. -
__init__
(**kwargs)¶ Initializes a new VideoStreamObject 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 VideoStreamObject.
- object_id (int) – The value to assign to the object_id property of this VideoStreamObject.
- confidence (float) – The value to assign to the confidence property of this VideoStreamObject.
- bounding_polygon (oci.ai_vision.models.BoundingPolygon) – The value to assign to the bounding_polygon property of this VideoStreamObject.
- properties (oci.ai_vision.models.ObjectProperties) – The value to assign to the properties property of this VideoStreamObject.
-
bounding_polygon
¶ [Required] Gets the bounding_polygon of this VideoStreamObject.
Returns: The bounding_polygon of this VideoStreamObject. Return type: oci.ai_vision.models.BoundingPolygon
-
confidence
¶ [Required] Gets the confidence of this VideoStreamObject. The confidence score, between 0 and 1.
Returns: The confidence of this VideoStreamObject. Return type: float
-
name
¶ [Required] Gets the name of this VideoStreamObject. Name of the object category label.
Returns: The name of this VideoStreamObject. Return type: str
-
object_id
¶ Gets the object_id of this VideoStreamObject. Unique identifier for the object.
Returns: The object_id of this VideoStreamObject. Return type: int
-
properties
¶ Gets the properties of this VideoStreamObject.
Returns: The properties of this VideoStreamObject. Return type: oci.ai_vision.models.ObjectProperties
-