从图库加载图像后使用 android 人脸检测

Use android face detection after loading image from gallery

嘿,我正在尝试制作一个 android 应用程序,用户可以在其中选择图库中的图像,然后图像出现在 ImageView 中,检测到的面部上方会出现一个框。

我已经有了从图库中加载图像并将其放入 ImageView 的代码,唯一的问题是我不知道如何从加载的图像中检测人脸。

有例子吗?? 任何帮助将不胜感激。

在Android中有多种识别人脸的方法。您需要实现 OpenCV library 之类的东西。如果您查看它,您会发现一个简单的示例!

另外,你可以看看JJIL Library

This question has been answered here already.

编辑: 好像内置了类之类的FaceDetector and you can see an example on how to use them here