我无法用相机拍照并检测到任何脸部。我在屏幕上显示图片,可以在图像上清晰地看到我的脸,但从未检测到它。我的logcat打印出“No face found!”
public void takePictureNoPreview(Context context) {
camera = openFrontFacingCamera();
if (camera != null) {
try {
SurfaceTexture dummy = new SurfaceTexture(0);
camera.setPreviewTexture(dummy);
camera.startPreview();
camera.takePicture(null, null, this);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
}
} else {
// booo, failed!
}
}
@Override
public void onPictureTaken(byte[] data, Camera camera) {
Log.i(LOG_TAG, "Picture taken");
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.RGB_565;
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length, options);
FaceDetector faceDetector = new FaceDetector(bitmap.getWidth(),
bitmap.getHeight(), 1);
Face[] faces = new Face[1];
int foundFaces = faceDetector.findFaces(bitmap, faces);
if (foundFaces > 0) {
Log.i(LOG_TAG, "Found a face!");
} else {
Log.i(LOG_TAG, "No face found!");
}
camera.release();
sendImageToActivity(bitmap);
}
答案 0 :(得分:0)
解决方案是将相机图像旋转90度。从相机返回的图像偏离了90度,这使得FaceDetector无法正确处理图像。
Matrix matrix = new Matrix();
matrix.postRotate(90);
bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);