Class VideoFaceSegment
A face segment in a video.
Inherited Members
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