IdentifyResult Class

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.vision.faceapi.models.IdentifyResult

public class IdentifyResult

Response body for identify face operation.

Method Summary

Modifier and Type Method and Description
List<IdentifyCandidate> candidates()

Get the candidates value.

UUID faceId()

Get the faceId value.

IdentifyResult withCandidates(List<IdentifyCandidate> candidates)

Set the candidates value.

IdentifyResult withFaceId(UUID faceId)

Set the faceId value.

Method Details

candidates

public List candidates()

Get the candidates value.

Returns:

the candidates value

faceId

public UUID faceId()

Get the faceId value.

Returns:

the faceId value

withCandidates

public IdentifyResult withCandidates(List candidates)

Set the candidates value.

Parameters:

candidates - the candidates value to set

Returns:

the IdentifyResult object itself.

withFaceId

public IdentifyResult withFaceId(UUID faceId)

Set the faceId value.

Parameters:

faceId - the faceId value to set

Returns:

the IdentifyResult object itself.

Applies to