Show / Hide Table of Contents

Class VideoObjectSegment

An object segment in a video.

Inheritance
object
VideoObjectSegment
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class VideoObjectSegment

Properties

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score, between 0 and 1.

Remarks

Required

Frames

Declaration
[Required(ErrorMessage = "Frames is required.")]
[JsonProperty(PropertyName = "frames")]
public List<VideoObjectFrame> Frames { get; set; }
Property Value
Type Description
List<VideoObjectFrame>

Object frame in a segment.

Remarks

Required

VideoSegment

Declaration
[Required(ErrorMessage = "VideoSegment is required.")]
[JsonProperty(PropertyName = "videoSegment")]
public VideoSegment VideoSegment { get; set; }
Property Value
Type Description
VideoSegment
Remarks

Required

In this article
Back to top