我正在尝试使用android FaceDetector。 我需要使用位图文件(faces.bmp来自组合照片),因为我还没有找到在android模拟器中使用android相机的方法。 但BitmapFactory.decodeFile返回null,文档只说如果位图无法解码则返回null。它只是一个24位的.bmp文件。我在Windows 7上使用Eclipse。我是否错误地指定了pathName?我是否需要使用24位.bmp文件以外的其他内容?
public class MyFaces extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final int width = 600;
final int height = 600;
final int maxFaces = 8;
FaceDetector faceDetector = new FaceDetector(width, height, maxFaces);
String pathName = "../res/drawable-hdpi/faces.bmp";
try {
Bitmap bitmap = BitmapFactory.decodeFile(pathName);
Face faces[] = new Face[maxFaces];
int nFaces = faceDetector.findFaces(bitmap, faces);
Log.d(this.getClass().toString(), "Faces: " + nFaces);
} catch (Exception e) {
Log.e(this.getClass().toString(), e.getMessage(), e);
}
}
}
答案 0 :(得分:3)
如果您只是在测试Bitmap bitmap = BitmapFactory.decodeFile(pathName);
,那么您可以使用:
Bitmap bitmap = BitmapFactory.decodeResource(R.drawable.faces);