从图库中选择照片后,应用程序崩溃 [英] App crashing after selecting photo from gallery

查看:144
本文介绍了从图库中选择照片后,应用程序崩溃的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I created an image processing app which shows percentage of similarity between images using openCV. However, whenever I select an image the application process crashes.

这是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中的行

and here is the line in mainactivity 161

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

推荐答案

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

Your file is too big. Add try-catch block and try to load smaller images with options.inSampleSize (try different values for 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
}

这篇关于从图库中选择照片后,应用程序崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆