你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IdentifyCandidate 类

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

public class IdentifyCandidate

所有可能符合资格的人脸。

方法摘要

修饰符和类型 方法和描述
double confidence()

获取置信度值。

UUID personId()

获取 personId 值。

IdentifyCandidate withConfidence(double confidence)

设置置信度值。

IdentifyCandidate withPersonId(UUID personId)

设置 personId 值。

方法详细信息

confidence

public double confidence()

获取置信度值。

Returns:

置信度值

personId

public UUID personId()

获取 personId 值。

Returns:

personId 值

withConfidence

public IdentifyCandidate withConfidence(double confidence)

设置置信度值。

Parameters:

confidence - 要设置的置信度值

Returns:

IdentifyCandidate 对象本身。

withPersonId

public IdentifyCandidate withPersonId(UUID personId)

设置 personId 值。

Parameters:

personId - 要设置的 personId 值

Returns:

IdentifyCandidate 对象本身。

适用于