VideoObject

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

Bases: object

Detected object in a video.

Methods

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

Attributes

name [Required] Gets the name of this VideoObject.
segments [Required] Gets the segments of this VideoObject.
__init__(**kwargs)

Initializes a new VideoObject 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 VideoObject.
  • segments (list[oci.ai_vision.models.VideoObjectSegment]) – The value to assign to the segments property of this VideoObject.
name

[Required] Gets the name of this VideoObject. Detected object name.

Returns:The name of this VideoObject.
Return type:str
segments

[Required] Gets the segments of this VideoObject. Object segments in a video.

Returns:The segments of this VideoObject.
Return type:list[oci.ai_vision.models.VideoObjectSegment]