2

Android 4.2、Intel アクセラレーションを備えた Windows エミュレーター。

私はこのコードを使用しており、異なる写真では常に顔検出がありません:

BitmapFactory.Options BitmapFactoryOptionsbfo = new BitmapFactory.Options();
BitmapFactoryOptionsbfo.inPreferredConfig = Bitmap.Config.RGB_565; 
myBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.face5,       BitmapFactoryOptionsbfo);
imageWidth = myBitmap.getWidth();
imageHeight = myBitmap.getHeight();
myFace = new FaceDetector.Face[numberOfFace];
myFaceDetect = new FaceDetector(imageWidth, imageHeight, numberOfFace);
numberOfFaceDetected = myFaceDetect.findFaces(myBitmap, myFace);     

それは何の問題ですか?

4

1 に答える 1

1

この例は、あなたがしたのと同じことをしました:

http://trivedihardik.wordpress.com/2011/09/13/android-face-detection-example/

試す別のリンク:

http://www.developer.com/ws/android/programming/face-detection-with-android-apis.html

于 2013-02-21T12:04:00.323 に答える