marketplace
latest
false
- 发行说明
- 概述
- 入门指南
- UiPath 市场供应商
- UiPath Marketplace 客户
- 发布准则
- 即用型自动化发布准则
- 解决方案加速器发布准则
- Integration Service 连接器的发布准则
- Process Mining 应用程序模板发布准则
- 安全性与 IP 保护
- 其他 UiPath 列表
- 连接器
- 如何创建活动
- 构建集成
重要 :
请注意,此内容已使用机器翻译进行了本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Marketplace 用户指南
上次更新日期 2026年4月1日
Detect faces
UiPath.MicrosoftFace.Activities.DetectFaces
检测指定图像中的面容,并指定特征,例如人员的估计年龄或他们是否戴镜。
属性
身份验证
- 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
常见
- “显示名称”- 活动的显示名称。
输入
- 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.
其他
- “私有”- 选中后将不再以“Verbose”级别记录变量和参数的值。
输出
- 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;
}