IdentifyCandidate Constructors

Definition

Overloads

IdentifyCandidate()

Initializes a new instance of the IdentifyCandidate class.

IdentifyCandidate(Guid, Double)

Initializes a new instance of the IdentifyCandidate class.

IdentifyCandidate()

Source:
IdentifyCandidate.cs

Initializes a new instance of the IdentifyCandidate class.

public IdentifyCandidate ();
Public Sub New ()

Applies to

IdentifyCandidate(Guid, Double)

Source:
IdentifyCandidate.cs

Initializes a new instance of the IdentifyCandidate class.

public IdentifyCandidate (Guid personId, double confidence);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyCandidate : Guid * double -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.IdentifyCandidate
Public Sub New (personId As Guid, confidence As Double)

Parameters

personId
Guid

Id of candidate

confidence
Double

Confidence threshold of identification, used to judge whether one face belong to one person. The range of confidenceThreshold is [0, 1] (default specified by algorithm).

Applies to