IdentifyCandidate Class

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

public class IdentifyCandidate

All possible faces that may qualify.

Method Summary

Modifier and Type Method and Description
double confidence()

Get the confidence value.

UUID personId()

Get the personId value.

IdentifyCandidate withConfidence(double confidence)

Set the confidence value.

IdentifyCandidate withPersonId(UUID personId)

Set the personId value.

Method Details

confidence

public double confidence()

Get the confidence value.

Returns:

the confidence value

personId

public UUID personId()

Get the personId value.

Returns:

the personId value

withConfidence

public IdentifyCandidate withConfidence(double confidence)

Set the confidence value.

Parameters:

confidence - the confidence value to set

Returns:

the IdentifyCandidate object itself.

withPersonId

public IdentifyCandidate withPersonId(UUID personId)

Set the personId value.

Parameters:

personId - the personId value to set

Returns:

the IdentifyCandidate object itself.

Applies to