关注this simple example我将面部检测功能合并到我的照片应用中。
为了简单起见,我删除了所有形状绘图的内容,我只是在寻找API来计算照片中的头部数量。
使用前置摄像头我拍照并且始终如一,并且没有检测到任何脸部。
每次运行代码时,日志中都会出现一个非常可疑的警告(这似乎与我正在做的事情没有任何关系,但每次都会出现 - 警告是:
W/ResourcesManager: Asset path '/system/framework/com.android.media.remotedisplay.jar' does not exist or contains no resources.
W/ResourcesManager: Asset path '/system/framework/com.android.location.provider.jar' does not exist or contains no resources.
这是我的代码
照片回调
PictureCallback jpegCallback = new PictureCallback() {
public void onPictureTaken(byte[] data, Camera camera) {
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferQualityOverSpeed = true;
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
options.inPurgeable = true;
options.inInputShareable = true;
options.inMutable = true;
Bitmap temp = BitmapFactory.decodeByteArray(data, 0,
data.length, options);
countHeads(temp);
} catch (Exception e) {
Log.d(TAG, "onPictureTaken callback failed : " + e);
}
}
};
主计数器
private void countHeads(Bitmap b){
Frame frame = new Frame.Builder().setBitmap(b).build();
FaceDetector faceDetector = new FaceDetector.Builder(getApplicationContext()).setTrackingEnabled(false)
.build();
if(!faceDetector.isOperational()){
BPCAlertDialog.alert(this, "Can't build face detection");
return;
}
SparseArray<Face> faces = faceDetector.detect(frame);
//this always prints 0
Log.d(TAG, "I COUNT " + faces.size() + " FACES IN THIS PHOTO");
}
答案 0 :(得分:1)
事实证明,问题是我正在侧面拍摄照片(手持电话),即使活动是为景观设置的。我还没有彻底反省具体的局限性,但看起来面孔需要与预期的方向对齐。当我想出更多时,我会添加这个答案。