希望使用 Google ML 套件识别人脸类型

问题描述 投票:0回答:1

我希望使用 Google ML 找出一个人的脸型,如方形、椭圆形或圆形。我知道我需要从不同角度测量脸的长度和宽度来确定脸型。但是,API 并没有给我这个。任何意见都将受到高度赞赏。

machine-learning computer-vision face-recognition google-mlkit
1个回答
0
投票

ML Kit 人脸检测具有轮廓模式,可返回轮廓上的点:https://developers.google.com/ml-kit/vision/face-detection/ios#example-of-face-contours

您可以利用这些信息灵活地确定其形状,具体取决于您如何定义方形或椭圆形或圆形。或者,您可以进一步使用下游模型从 ML Kit 人脸检测轮廓获取输入,并输出形状枚举。

© www.soinside.com 2019 - 2024. All rights reserved.