我正在创建一个应用程序捕获图像,因为它检测到面部并且我能够实现这一点,但只有一个问题是FaceDetectionListener的OnFaceDetection函数即使在相机前面没有面部也会继续执行。我正在粘贴我的代码。
mCamera.setFaceDetectionListener(new Camera.FaceDetectionListener() {
@Override
public void onFaceDetection(Camera.Face[] faces, Camera camera) {
try {
if (lastCaptureTiume + 10000 <= System.currentTimeMillis() || !faceCaptured) {
mCamera.takePicture(null, null, jpegCallback);
lastCaptureTiume = System.currentTimeMillis();
faceCaptured = true;
}
}
catch (Exception e) {
}
}
});
虽然相机前面没有脸,但问题仍然是拍照。
答案 0 :(得分:0)
对于不同的设备,这种行为是不同的对于我的注释3 onFaceDetection即使没有脸也继续执行,对于nexus手机,它的表现完美无缺。 好吧,我没有得到任何其他解决方案,所以我进行了面部检查。
if (faces != null && faces.length > 0) {
//Do code here
}