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 回答