次の方法で共有


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 オブジェクト自体。

適用対象