gpt4 book ai didi

android - 模拟器中的人脸检测 android + 网络摄像头预览

转载 作者:行者123 更新时间:2023-11-29 22:26:24 31 4
gpt4 key购买 nike

我是 Android 模拟器的新手。谁能告诉我如何使用“android.media.FaceDetector”?我如何将网络摄像头预览与安卓模拟器中的人脸检测结合起来?

最佳答案

我不确定你在问什么; API 相当简单:

FaceDector fc = new FaceDetector(<width of your bitmap>, <height of your bitmap>, <max number of faces>);
Face[] faces = new Face[<max number of faces>];
int found = fc.findFaces(<your bitmap>, faces);
PointF point = new PointF();
for (int i = 0; i < found; ++i) {
faces[i].getMidPoint(point);
System.out.println("Point: " + point.x + ", " + point.y);
}

关于android - 模拟器中的人脸检测 android + 网络摄像头预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5829264/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com