VerifyFaceToPersonRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VerifyFaceToPersonRequest() |
Initializes a new instance of the VerifyFaceToPersonRequest class. |
VerifyFaceToPersonRequest(Guid, Guid, String, String) |
Initializes a new instance of the VerifyFaceToPersonRequest class. |
VerifyFaceToPersonRequest()
- Source:
- VerifyFaceToPersonRequest.cs
Initializes a new instance of the VerifyFaceToPersonRequest class.
public VerifyFaceToPersonRequest ();
Public Sub New ()
Applies to
VerifyFaceToPersonRequest(Guid, Guid, String, String)
- Source:
- VerifyFaceToPersonRequest.cs
Initializes a new instance of the VerifyFaceToPersonRequest class.
public VerifyFaceToPersonRequest (Guid faceId, Guid personId, string personGroupId = default, string largePersonGroupId = default);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.VerifyFaceToPersonRequest : Guid * Guid * string * string -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.VerifyFaceToPersonRequest
Public Sub New (faceId As Guid, personId As Guid, Optional personGroupId As String = Nothing, Optional largePersonGroupId As String = Nothing)
Parameters
- faceId
- Guid
FaceId of the face, comes from Face - Detect
- personId
- Guid
Specify a certain person in a person group or a large person group. personId is created in PersonGroup Person - Create or LargePersonGroup Person - Create.
- personGroupId
- String
Using existing personGroupId and personId for fast loading a specified person. personGroupId is created in PersonGroup - Create. Parameter personGroupId and largePersonGroupId should not be provided at the same time.
- largePersonGroupId
- String
Using existing largePersonGroupId and personId for fast loading a specified person. largePersonGroupId is created in LargePersonGroup - Create. Parameter personGroupId and largePersonGroupId should not be provided at the same time.
Applies to
Azure SDK for .NET