Show / Hide Table of Contents

Class VideoFaceSegment

A face segment in a video.

Inheritance
object
VideoFaceSegment
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 VideoFaceSegment

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<VideoFaceFrame> Frames { get; set; }
Property Value
Type Description
List<VideoFaceFrame>

Face frames 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