marketplace
latest
false
- Release Notes
- Overview
- Getting Started
- Marketplace Vendors
- Marketplace Customers
- Publishing Guidelines
- Publishing Guidelines for Ready-to-go Automations
- Publishing Guidelines for Solution Accelerators
- Publishing Guidelines for Integration Service Connectors
- Security & IP Protection
- Other UiPath Listings
- Add Face
- Detect Faces
- Identify Faces
- Verify Face
- Node-RED
- Setup
- Teams
- Microsoft Teams Scope
- Create Team
- Create Team From Group
- Get Team
- Get Teams
- Channels
- Create Channel
- Delete Channel
- Get Channel
- Get Channels
- Update Channel
- Chats
- Get Chat
- Get Chats
- Get Chat Members
- Messages
- Get Message
- Get Messages
- Get Message Replies
- Reply To Message
- Send Message
- Events
- Create Event
- Delete Event
- Get Event
- Get Events
- Users
- Get User Presence
- How It Works
- Technical References
- Get Started
- About
- Setup
- Technical References
- 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 Keys
- Get Model Info
- Delete Model
- Connectors
- How to Create Activities
- Build Your Integration
Identify Faces
Marketplace User Guide
Last updated Sep 5, 2024
Identify Faces
UiPath.MicrosoftFace.Activities.DetectFaces
Finds the closest match persons for the provided faces inside the specified person group.
- 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
- Faces - A collection of faces. The faces need to be returned by a ] Activity. Each of the faces are identified independently.
- PersonGroupName - The name of the person group container in which the query will be carried out.
- Confidence - Customised identification threshold. The range for the threshold is in the range of [0,1]. Advanced users can tweak to overwrite the internal threshold for better precision on the specific use cases data.
- Private - If selected, the values of variables and arguments are no longer logged at Verbose level.
-
Persons - The identified candidate person for each face query.
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;
}