从图库中选择照片后,应用崩溃

时间:2018-09-20 14:54:28

标签: java android image-processing

我创建了一个图像处理应用程序,该应用程序使用openCV显示图像之间的相似性百分比。但是,每当我选择一个图像时,应用程序就会崩溃。

这是logcat:

E/HW-JPEG-DEC: [HME_JPEG_DEC_Delete](3321): HME_JPEG_DEC_Delete: decoder_ctx=null
E/AndroidRuntime: FATAL EXCEPTION: main
              Process: softwareengineering.pwc.leafidentifierv2, PID: 1036
              java.lang.OutOfMemoryError: Failed to allocate a 52985868 byte allocation with 4194304 free bytes and 15MB until OOM
                  at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
                  at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
                  at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:701)
                  at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:508)
                  at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:541)
                  at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:512)
                  at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:572)
                  at softwareengineering.pwc.leafidentifierv2.MainActivity.onActivityResult(MainActivity.java:161)
                  at android.app.Activity.dispatchActivityResult(Activity.java:7193)
                  at android.app.ActivityThread.deliverResults(ActivityThread.java:4280)
                  at android.app.ActivityThread.handleSendResult(ActivityThread.java:4327)
                  at android.app.ActivityThread.-wrap22(ActivityThread.java)
                  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1624)
                  at android.os.Handler.dispatchMessage(Handler.java:105)
                  at android.os.Looper.loop(Looper.java:156)
                  at android.app.ActivityThread.main(ActivityThread.java:6523)
                  at java.lang.reflect.Method.invoke(Native Method)
                  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:942)
                  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:832)

这是主要活动161中的行

toMatch[4] = BitmapFactory.decodeResource(getResources(), R.drawable.cleaf5);

1 个答案:

答案 0 :(得分:1)

您的文件太大。 添加try-catch块并尝试使用options.inSampleSize加载较小的图像(为options.inSampleSize尝试不同的值)

示例:

Bitmap bitmap = null;

try{
bitmap =  BitmapFactory.decodeResource(getResources(), R.drawable.cleaf5, options);
}catch(OutOfMemoryError e)    
   try{
   BitmapFactory.Options options = new BitmapFactory.Options();
   options.inSampleSize = 8;
   bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.cleaf5, options);
   }catch(OutOfMemoryError e) {}
}

if(bitmap != null){
//do smth
}