Class AnalyzeVideoResult
Video analysis results.
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class AnalyzeVideoResult
Properties
Errors
Declaration
[JsonProperty(PropertyName = "errors")]
public List<ProcessingError> Errors { get; set; }
Property Value
Type | Description |
---|---|
List<ProcessingError> | Array of possible errors. |
FaceDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "faceDetectionModelVersion")]
public string FaceDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | Face Detection model version. |
LabelDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "labelDetectionModelVersion")]
public string LabelDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | Label Detection model version. |
ObjectDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "objectDetectionModelVersion")]
public string ObjectDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | Object Detection model version. |
ObjectTrackingModelVersion
Declaration
[JsonProperty(PropertyName = "objectTrackingModelVersion")]
public string ObjectTrackingModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | Object Tracking model version. |
OntologyClasses
Declaration
[JsonProperty(PropertyName = "ontologyClasses")]
public List<OntologyClass> OntologyClasses { get; set; }
Property Value
Type | Description |
---|---|
List<OntologyClass> | The ontologyClasses of video labels. |
TextDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "textDetectionModelVersion")]
public string TextDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | Text Detection model version. |
VideoFaces
Declaration
[JsonProperty(PropertyName = "videoFaces")]
public List<VideoFace> VideoFaces { get; set; }
Property Value
Type | Description |
---|---|
List<VideoFace> | Detected faces in a video. |
VideoLabels
Declaration
[JsonProperty(PropertyName = "videoLabels")]
public List<VideoLabel> VideoLabels { get; set; }
Property Value
Type | Description |
---|---|
List<VideoLabel> | Detected labels in a video. |
VideoMetadata
Declaration
[Required(ErrorMessage = "VideoMetadata is required.")]
[JsonProperty(PropertyName = "videoMetadata")]
public VideoMetadata VideoMetadata { get; set; }
Property Value
Type | Description |
---|---|
VideoMetadata |
Remarks
Required
VideoObjects
Declaration
[JsonProperty(PropertyName = "videoObjects")]
public List<VideoObject> VideoObjects { get; set; }
Property Value
Type | Description |
---|---|
List<VideoObject> | Detected objects in a video. |
VideoText
Declaration
[JsonProperty(PropertyName = "videoText")]
public List<VideoText> VideoText { get; set; }
Property Value
Type | Description |
---|---|
List<VideoText> | Detected text in a video. |
VideoTrackedObjects
Declaration
[JsonProperty(PropertyName = "videoTrackedObjects")]
public List<VideoTrackedObject> VideoTrackedObjects { get; set; }
Property Value
Type | Description |
---|---|
List<VideoTrackedObject> | Tracked objects in a video. |