Show / Hide Table of Contents

Class VideoFaceDetectionFeature

Video face detection feature

Inheritance
object
VideoFeature
VideoFaceDetectionFeature
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 VideoFaceDetectionFeature : VideoFeature

Properties

IsLandmarkRequired

Declaration
[JsonProperty(PropertyName = "isLandmarkRequired")]
public bool? IsLandmarkRequired { get; set; }
Property Value
Type Description
bool?

Whether or not return face landmarks.

MaxResults

Declaration
[JsonProperty(PropertyName = "maxResults")]
public int? MaxResults { get; set; }
Property Value
Type Description
int?

The maximum number of results per frame to return.

MinConfidence

Declaration
[JsonProperty(PropertyName = "minConfidence")]
public float? MinConfidence { get; set; }
Property Value
Type Description
float?

The minimum confidence score, between 0 and 1, when the value is set, results with lower confidence will not be returned.

In this article
Back to top