Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using OpenCV on android to manipulate bitmap and I get out of memory error when I want to manipulate with the original, not scale image, e.g. 1500 x 2048 resolution. When I scale the image, then everything is ok, but I need to operate with original image, because the quality of image is for me very important. This happens when I want to convert Mat to bitmap using that code:

private Bitmap convertMatToBitmap(Mat image) {
    Bitmap bitmap = null;

    try {
        bitmap = Bitmap.createBitmap(image.width(), image.height(), Config.ARGB_8888);

        org.opencv.android.Utils.matToBitmap(image, bitmap);
    } catch (OutOfMemoryError e) {
        Log.e(TAG, "Out of memory exception in convertMatToBitmap: " + e.getMessage());
    } catch(Exception e) {
        Log.e(TAG, "convertMatToBitmap throws an exception: " + e.getMessage());
    }

    return bitmap;
}

Has someony an idea how should I do it?

share|improve this question
1  
i think this error because your bitmap has a large size see this post – HforHesham Dec 13 '12 at 17:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.