AnalyzeVideoStreamResult¶
- 
class oci.ai_vision.models.AnalyzeVideoStreamResult(**kwargs)¶
- Bases: - object- Video stream analysis results. - Methods - __init__(**kwargs)- Initializes a new AnalyzeVideoStreamResult object with values from keyword arguments. - Attributes - errors- Gets the errors of this AnalyzeVideoStreamResult. - image_data- Gets the image_data of this AnalyzeVideoStreamResult. - object_detection_model_versions- Gets the object_detection_model_versions of this AnalyzeVideoStreamResult. - object_tracking_model_versions- Gets the object_tracking_model_versions of this AnalyzeVideoStreamResult. - ontology_classes- Gets the ontology_classes of this AnalyzeVideoStreamResult. - stream_job_id- [Required] Gets the stream_job_id of this AnalyzeVideoStreamResult. - stream_source_id- [Required] Gets the stream_source_id of this AnalyzeVideoStreamResult. - timestamp- [Required] Gets the timestamp of this AnalyzeVideoStreamResult. - video_stream_metadata- [Required] Gets the video_stream_metadata of this AnalyzeVideoStreamResult. - video_stream_objects- Gets the video_stream_objects of this AnalyzeVideoStreamResult. - 
__init__(**kwargs)¶
- Initializes a new AnalyzeVideoStreamResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - ontology_classes (oci.ai_vision.models.OntologyClass) – The value to assign to the ontology_classes property of this AnalyzeVideoStreamResult.
- video_stream_metadata (oci.ai_vision.models.VideoStreamMetadata) – The value to assign to the video_stream_metadata property of this AnalyzeVideoStreamResult.
- image_data (str) – The value to assign to the image_data property of this AnalyzeVideoStreamResult.
- stream_job_id (str) – The value to assign to the stream_job_id property of this AnalyzeVideoStreamResult.
- stream_source_id (str) – The value to assign to the stream_source_id property of this AnalyzeVideoStreamResult.
- timestamp (str) – The value to assign to the timestamp property of this AnalyzeVideoStreamResult.
- video_stream_objects (list[oci.ai_vision.models.VideoStreamObject]) – The value to assign to the video_stream_objects property of this AnalyzeVideoStreamResult.
- object_tracking_model_versions (list[oci.ai_vision.models.ModelVersionDetails]) – The value to assign to the object_tracking_model_versions property of this AnalyzeVideoStreamResult.
- object_detection_model_versions (list[oci.ai_vision.models.ModelVersionDetails]) – The value to assign to the object_detection_model_versions property of this AnalyzeVideoStreamResult.
- errors (list[oci.ai_vision.models.ProcessingError]) – The value to assign to the errors property of this AnalyzeVideoStreamResult.
 
 - 
errors¶
- Gets the errors of this AnalyzeVideoStreamResult. Array of possible errors. - Returns: - The errors of this AnalyzeVideoStreamResult. - Return type: - list[oci.ai_vision.models.ProcessingError] 
 - 
image_data¶
- Gets the image_data of this AnalyzeVideoStreamResult. Base 64 encoded frame - Returns: - The image_data of this AnalyzeVideoStreamResult. - Return type: - str 
 - 
object_detection_model_versions¶
- Gets the object_detection_model_versions of this AnalyzeVideoStreamResult. List of Object Detection model versions. - Returns: - The object_detection_model_versions of this AnalyzeVideoStreamResult. - Return type: - list[oci.ai_vision.models.ModelVersionDetails] 
 - 
object_tracking_model_versions¶
- Gets the object_tracking_model_versions of this AnalyzeVideoStreamResult. List of Object Tracking model versions. - Returns: - The object_tracking_model_versions of this AnalyzeVideoStreamResult. - Return type: - list[oci.ai_vision.models.ModelVersionDetails] 
 - 
ontology_classes¶
- Gets the ontology_classes of this AnalyzeVideoStreamResult. - Returns: - The ontology_classes of this AnalyzeVideoStreamResult. - Return type: - oci.ai_vision.models.OntologyClass 
 - 
stream_job_id¶
- [Required] Gets the stream_job_id of this AnalyzeVideoStreamResult. OCID of streamJob. - Returns: - The stream_job_id of this AnalyzeVideoStreamResult. - Return type: - str 
 - 
stream_source_id¶
- [Required] Gets the stream_source_id of this AnalyzeVideoStreamResult. OCID of StreamSource. - Returns: - The stream_source_id of this AnalyzeVideoStreamResult. - Return type: - str 
 - 
timestamp¶
- [Required] Gets the timestamp of this AnalyzeVideoStreamResult. time stamp of frame in utc. - Returns: - The timestamp of this AnalyzeVideoStreamResult. - Return type: - str 
 - 
video_stream_metadata¶
- [Required] Gets the video_stream_metadata of this AnalyzeVideoStreamResult. - Returns: - The video_stream_metadata of this AnalyzeVideoStreamResult. - Return type: - oci.ai_vision.models.VideoStreamMetadata 
 - 
video_stream_objects¶
- Gets the video_stream_objects of this AnalyzeVideoStreamResult. Tracked objects in a video stream. - Returns: - The video_stream_objects of this AnalyzeVideoStreamResult. - Return type: - list[oci.ai_vision.models.VideoStreamObject] 
 
-