marketplace
latest
false
- リリース ノート
- 概要
- 基本情報
- Marketplace ベンダー
- Marketplace のお客様
- パブリッシング ガイドライン
- すぐに使えるオートメーションのパブリッシング ガイドライン
- ソリューション アクセラレータの公開ガイドライン
- Integration Service コネクタの公開ガイドライン
- Process Mining アプリ テンプレートのパブリッシュ ガイドライン
- セキュリティと IP 保護
- その他の UiPath コンポーネント
- Add Face
- 顔を検出 (Detect faces)
- Identify Faces
- Verify Face
- Node-RED
- セットアップ
- Teams
- Microsoft Teams Scope
- Create Team
- Create Team from Group
- Get Team
- Get Teams
- Channels
- チャンネルを作成
- Delete Channel
- Get Channel
- Get Channels
- Update Channel
- Chats
- Get Chat
- Get Chats
- Get Chat Members
- Messages
- メッセージを取得
- メッセージを取得
- Get Message Replies
- メッセージに返信
- メッセージを送信
- イベント
- イベント/予定を作成
- イベント/予定を削除
- Get Event
- Get Events
- ユーザー
- Get User Presence
- 動作のしくみ
- テクニカル リファレンス
- はじめに
- 概要
- セットアップ
- テクニカル リファレンス
- Azure Form Recognizer Scope
- Activities (アクティビティ)
- Analyze Form
- Analyze Form Async
- Get Analyze Form Result
- Analyze Receipt
- Analyze Receipt Async
- Get Analyze Receipt Result
- Analyze Layout
- Analyze Layout Async
- Get Analyze Layout Result
- Train Model
- Get Models
- モデル キーを取得する
- Get Model Info
- モデルを削除
- コネクタ
- How to Create Activities
- 連携の独自開発
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Marketplace ユーザー ガイド
最終更新日時 2026年4月1日
Verify Face
UiPath.MicrosoftFace.Activities.VerifyFace
指定した顔が指定した個人に属しているかどうかを検証します。
プロパティ
認証
- ServiceURL - The endpoint to the Microsoft Face service. Format is
https://*region*.api.cognitive.microsoft.com. - SubscriptionKey - The subscription key for authenticating the Microsoft Face Service calls. The subscription key needs to be provided by Microsoft. For more information please visit the official Microsoft documentation here
共通
- 表示名 - アクティビティの表示名です。
入力
- Face - The face you want to verify. The faces need to be returned by a Detect Faces Activity.
- Person - The specified person to verify against.
- PersonGroupName - The name of the person group container which contains the specified Person.
その他
- プライベート - オンにした場合、変数および引数の値が Verbose レベルでログに出力されなくなります。
出力
- Confidence - The similarity score between the specified face and person. If this is greater then 0.5 it should indicate that this is the same person but values may vary for your specific use case.
UiPath.MicrosoftFace.Face:
{
string FaceId;
FaceRectangle FaceRectangle;
FaceAttributes FaceAtributes;
}
UiPath.MicrosoftFace.FaceAttributes:
{
double Age;
string Gender;
string Glasses;
double Smile;
}
UiPath.MicrosoftFace.FaceRectangle:
{
Int Height;
Int Left;
Int Top;
Int Width;
}
UiPath.MicrosoftFace.Person:
{
double Confidence;
string FaceId;
string PersonId;
string PersonName;
}
UiPath.MicrosoftFace.Face:
{
string FaceId;
FaceRectangle FaceRectangle;
FaceAttributes FaceAtributes;
}
UiPath.MicrosoftFace.FaceAttributes:
{
double Age;
string Gender;
string Glasses;
double Smile;
}
UiPath.MicrosoftFace.FaceRectangle:
{
Int Height;
Int Left;
Int Top;
Int Width;
}
UiPath.MicrosoftFace.Person:
{
double Confidence;
string FaceId;
string PersonId;
string PersonName;
}