AnalyzeVideoResult

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

Bases: object

Video analysis results.

Methods

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

Attributes

errors Gets the errors of this AnalyzeVideoResult.
face_detection_model_version Gets the face_detection_model_version of this AnalyzeVideoResult.
label_detection_model_version Gets the label_detection_model_version of this AnalyzeVideoResult.
object_detection_model_version Gets the object_detection_model_version of this AnalyzeVideoResult.
object_tracking_model_version Gets the object_tracking_model_version of this AnalyzeVideoResult.
ontology_classes Gets the ontology_classes of this AnalyzeVideoResult.
text_detection_model_version Gets the text_detection_model_version of this AnalyzeVideoResult.
video_faces Gets the video_faces of this AnalyzeVideoResult.
video_labels Gets the video_labels of this AnalyzeVideoResult.
video_metadata [Required] Gets the video_metadata of this AnalyzeVideoResult.
video_objects Gets the video_objects of this AnalyzeVideoResult.
video_text Gets the video_text of this AnalyzeVideoResult.
video_tracked_objects Gets the video_tracked_objects of this AnalyzeVideoResult.
__init__(**kwargs)

Initializes a new AnalyzeVideoResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • video_metadata (oci.ai_vision.models.VideoMetadata) – The value to assign to the video_metadata property of this AnalyzeVideoResult.
  • video_labels (list[oci.ai_vision.models.VideoLabel]) – The value to assign to the video_labels property of this AnalyzeVideoResult.
  • video_objects (list[oci.ai_vision.models.VideoObject]) – The value to assign to the video_objects property of this AnalyzeVideoResult.
  • video_tracked_objects (list[oci.ai_vision.models.VideoTrackedObject]) – The value to assign to the video_tracked_objects property of this AnalyzeVideoResult.
  • video_text (list[oci.ai_vision.models.VideoText]) – The value to assign to the video_text property of this AnalyzeVideoResult.
  • video_faces (list[oci.ai_vision.models.VideoFace]) – The value to assign to the video_faces property of this AnalyzeVideoResult.
  • ontology_classes (list[oci.ai_vision.models.OntologyClass]) – The value to assign to the ontology_classes property of this AnalyzeVideoResult.
  • label_detection_model_version (str) – The value to assign to the label_detection_model_version property of this AnalyzeVideoResult.
  • object_detection_model_version (str) – The value to assign to the object_detection_model_version property of this AnalyzeVideoResult.
  • object_tracking_model_version (str) – The value to assign to the object_tracking_model_version property of this AnalyzeVideoResult.
  • text_detection_model_version (str) – The value to assign to the text_detection_model_version property of this AnalyzeVideoResult.
  • face_detection_model_version (str) – The value to assign to the face_detection_model_version property of this AnalyzeVideoResult.
  • errors (list[oci.ai_vision.models.ProcessingError]) – The value to assign to the errors property of this AnalyzeVideoResult.
errors

Gets the errors of this AnalyzeVideoResult. Array of possible errors.

Returns:The errors of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.ProcessingError]
face_detection_model_version

Gets the face_detection_model_version of this AnalyzeVideoResult. Face Detection model version.

Returns:The face_detection_model_version of this AnalyzeVideoResult.
Return type:str
label_detection_model_version

Gets the label_detection_model_version of this AnalyzeVideoResult. Label Detection model version.

Returns:The label_detection_model_version of this AnalyzeVideoResult.
Return type:str
object_detection_model_version

Gets the object_detection_model_version of this AnalyzeVideoResult. Object Detection model version.

Returns:The object_detection_model_version of this AnalyzeVideoResult.
Return type:str
object_tracking_model_version

Gets the object_tracking_model_version of this AnalyzeVideoResult. Object Tracking model version.

Returns:The object_tracking_model_version of this AnalyzeVideoResult.
Return type:str
ontology_classes

Gets the ontology_classes of this AnalyzeVideoResult. The ontologyClasses of video labels.

Returns:The ontology_classes of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.OntologyClass]
text_detection_model_version

Gets the text_detection_model_version of this AnalyzeVideoResult. Text Detection model version.

Returns:The text_detection_model_version of this AnalyzeVideoResult.
Return type:str
video_faces

Gets the video_faces of this AnalyzeVideoResult. Detected faces in a video.

Returns:The video_faces of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.VideoFace]
video_labels

Gets the video_labels of this AnalyzeVideoResult. Detected labels in a video.

Returns:The video_labels of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.VideoLabel]
video_metadata

[Required] Gets the video_metadata of this AnalyzeVideoResult.

Returns:The video_metadata of this AnalyzeVideoResult.
Return type:oci.ai_vision.models.VideoMetadata
video_objects

Gets the video_objects of this AnalyzeVideoResult. Detected objects in a video.

Returns:The video_objects of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.VideoObject]
video_text

Gets the video_text of this AnalyzeVideoResult. Detected text in a video.

Returns:The video_text of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.VideoText]
video_tracked_objects

Gets the video_tracked_objects of this AnalyzeVideoResult. Tracked objects in a video.

Returns:The video_tracked_objects of this AnalyzeVideoResult.
Return type:list[oci.ai_vision.models.VideoTrackedObject]