VideoLabel¶
-
class
oci.ai_vision.models.
VideoLabel
(**kwargs)¶ Bases:
object
Detected label in a video.
Methods
__init__
(**kwargs)Initializes a new VideoLabel object with values from keyword arguments. Attributes
name
[Required] Gets the name of this VideoLabel. segments
[Required] Gets the segments of this VideoLabel. -
__init__
(**kwargs)¶ Initializes a new VideoLabel 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 VideoLabel.
- segments (list[oci.ai_vision.models.VideoLabelSegment]) – The value to assign to the segments property of this VideoLabel.
-
name
¶ [Required] Gets the name of this VideoLabel. Detected label name.
Returns: The name of this VideoLabel. Return type: str
-
segments
¶ [Required] Gets the segments of this VideoLabel. Label segments in a video.
Returns: The segments of this VideoLabel. Return type: list[oci.ai_vision.models.VideoLabelSegment]
-