如何检测左眼和右眼的坐标使用android面部检测

时间:2015-12-11 08:53:52

标签: android face-detection eye-detection

您好我是Android的新手。我想检测左眼和右眼的坐标以及图像中的毛发。 在这个链接link中,它显示了检测眼睛的方法是什么,但我无法实现这些方法。 此外,我想检测图像中的毛发,所以我该怎么做。

1 个答案:

答案 0 :(得分:5)

使用移动视觉API,可以将左眼和右眼检测为面部标志。请参阅此处有关检测地标的教程:

https://developers.google.com/vision/detect-faces-tutorial

和API枚举地标类型:

https://developers.google.com/android/reference/com/google/android/gms/vision/face/Landmark

对教程中的代码稍作修改就是专门找到眼睛所需的全部内容:

for (int i = 0; i < faces.size(); ++i) {
  Face face = faces.valueAt(i);
  for (Landmark landmark : face.getLandmarks()) {
    switch (landmark.getType()) {
      case Landmark.LEFT_EYE:
        // use landmark.getPosition() as the left eye position