Marketplace
latest
false
Banner background image
Marketplace User Guide
Last updated Apr 16, 2024

Detect Faces

UiPath.MicrosoftFace.Activities.DetectFaces

Detects faces inside the specified image and specifies characteristics like the estimated age of the person or if they wear any glasses.

Properties

Authentication

  • 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

Common

  • DisplayName - The display name of the activity.

Input

  • ImagePath - The path to the image to be sent for analyses. This field is mutually exclusive with the ImageURL field.
  • ImageURL - The URL to the image to be sent for analyses. This field is mutually exclusive with the ImagePath field.

Misc

  • Private - If selected, the values of variables and arguments are no longer logged at Verbose level.

Output

  • Faces - A collection of the identified faces return as a Custom Class array.

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.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;
}
  • Properties
  • Authentication
  • Common
  • Input
  • Misc
  • Output

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo White
Trust and Security
© 2005-2024 UiPath. All rights reserved.