0

我需要检测用户面部并比较面部以验证我的应用程序,因为我使用 FaceDetector API 来检测用户面部。

当我运行我的代码时,它没有任何缺陷。但它使检测到的人脸计数为零。

    public class AndroidFaceDetectorActivity extends Activity {
    private static final int TAKE_PICTURE_CODE = 100;
    private static final int MAX_FACES = 5;

    private Bitmap cameraBitmap = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ((Button)findViewById(R.id.take_picture)).setOnClickListener(btnClick);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);

            if(TAKE_PICTURE_CODE == requestCode){
                    processCameraImage(data);
            }
    }


    private void openCamera(){
        Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

        startActivityForResult(intent, TAKE_PICTURE_CODE);
    }

    private void processCameraImage(Intent intent){
        setContentView(R.layout.detectlayout);

        ((Button)findViewById(R.id.detect_face)).setOnClickListener(btnClick);

        ImageView imageView = (ImageView)findViewById(R.id.image_view);

        cameraBitmap = (Bitmap)intent.getExtras().get("data");

        imageView.setImageBitmap(cameraBitmap);
    }

    private void detectFaces(){
        if(null != cameraBitmap){
                Log.d("FACE_RECOGNITION","CHECK");
                int width = cameraBitmap.getWidth();
                int height = cameraBitmap.getHeight();

                FaceDetector detector = new FaceDetector(width, height,AndroidFaceDetectorActivity.MAX_FACES);
                Face[] faces = new Face[AndroidFaceDetectorActivity.MAX_FACES];

                Bitmap bitmap565 = Bitmap.createBitmap(width, height, Config.RGB_565);
                Paint ditherPaint = new Paint();
                Paint drawPaint = new Paint();

                ditherPaint.setDither(true);
                drawPaint.setColor(Color.RED);
                drawPaint.setStyle(Paint.Style.STROKE);
                drawPaint.setStrokeWidth(2);

                Canvas canvas = new Canvas();
                canvas.setBitmap(bitmap565);
                canvas.drawBitmap(cameraBitmap, 0, 0, ditherPaint);

                int facesFound = detector.findFaces(bitmap565, faces);
                PointF midPoint = new PointF();
                float eyeDistance = 0.0f;
                float confidence = 0.0f;

                Log.i("FaceDetector", "Number of faces found: " + facesFound);

                if(facesFound > 0)
                {
                        for(int index=0; index<facesFound; ++index){
                                faces[index].getMidPoint(midPoint);
                                eyeDistance = faces[index].eyesDistance();
                                confidence = faces[index].confidence();

                                Log.i("FaceDetector", 
                                                "Confidence: " + confidence + 
                                                ", Eye distance: " + eyeDistance + 
                                                ", Mid Point: (" + midPoint.x + ", " + midPoint.y + ")");

                                canvas.drawRect((int)midPoint.x - eyeDistance , 
                                                                (int)midPoint.y - eyeDistance , 
                                                                (int)midPoint.x + eyeDistance, 
                                                                (int)midPoint.y + eyeDistance, drawPaint);
                        }
                }

                String filepath = Environment.getExternalStorageDirectory() + "/facedetect" + System.currentTimeMillis() + ".jpg";

                    try {
                            FileOutputStream fos = new FileOutputStream(filepath);

                            bitmap565.compress(CompressFormat.JPEG, 90, fos);

                            fos.flush();
                            fos.close();
                    } catch (FileNotFoundException e) {
                            e.printStackTrace();
                    } catch (IOException e) {
                            e.printStackTrace();
                    }

                    ImageView imageView = (ImageView)findViewById(R.id.image_view);

                    imageView.setImageBitmap(bitmap565);
        }
    }

    private View.OnClickListener btnClick = new View.OnClickListener() {
            //@Override
            public void onClick(View v) {
                    switch(v.getId()){
                            case R.id.take_picture:         openCamera();   break;
                            case R.id.detect_face:          detectFaces();  break;  
                    }
            }
    };
}

我做错了什么?

或者

有没有其他方法可以做到这一点?

谢谢

4

1 回答 1

0

getExtras().get("data")意图生成MediaStore.ACTION_IMAGE_CAPTURE非常低分辨率的位图(我相信它是 160x120 像素),它可以用作缩略图,但不足以让人脸检测完成它的工作。

通常,人脸检测在您可以接收 form 的中等分辨率图像(例如 64x480 像素)上是可以Camera.previewCallback()的,但是这样您需要权限和代码来控制应用程序中的相机,您不能为此使用意图

以下是 Android 上人脸检测的官方介绍:http: //developer.android.com/guide/topics/media/camera.html#face-detection

如果您真的喜欢这种方式,您可以使用getData()以全分辨率查找捕获的图像,并将其转换为位图,例如

cameraBitmap = BitmapFactory.decodeFile(data.getData().getPath());
于 2012-12-26T10:31:27.777 回答