使用Android相机捕获图像后将Bitmap转换为Mat

时间:2013-06-30 12:19:08

标签: android opencv bitmap mat

Mat b = new Mat();
Bitmap bmp = getIntent().getExtras().getParcelable("image_send");

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_display_image);
    Mat tmp = new Mat (bmp.getWidth(), bmp.getHeight(), CvType.CV_8UC1);
    Utils.bitmapToMat(bmp, tmp);
    Imgproc.cvtColor(tmp, tmp, Imgproc.COLOR_RGB2GRAY);
    //Imgproc.cvtColor(tmp, tmp, Imgproc.COLOR_GRAY2RGB, 4);
    Utils.matToBitmap(tmp, bmp);

    iv = (ImageView) findViewById(R.id.imageView1);
    iv.setImageBitmap(bmp);
}

无法显示bmp。我的应用程序在拍完照片后停止了。

4 个答案:

答案 0 :(得分:42)

Utils.bitmapToMap需要ARGB_8888RGB_565类型的位图。

import org.opencv.android.Utils;

Mat mat = new Mat();    
Bitmap bmp32 = bmp.copy(Bitmap.Config.ARGB_8888, true);
Utils.bitmapToMat(bmp32, mat);

答案 1 :(得分:5)

Mat tmp = new Mat (bmp.getWidth(), bmp.getHeight(), CvType.CV_8UC1);

OpenCV Mat构造函数需要行,列对而不是宽度,高度作为参数,反转它们。

尝试:

Mat tmp = new Mat (bmp.getHeight(), bmp.getWidth(), CvType.CV_8UC1);

答案 2 :(得分:0)

使用Camera2此任务非常快,只需要在ImageReader上使用ImageFormat配置YUV_420_888,然后使用OpenCV处理帧,如下所示:

// You can read image with differents patterns for example grayscale:
Mat mGray(height, width, cv::IMREAD_GRAYSCALE, pFrameData); 

下一个答案中的完整实施https://stackoverflow.com/a/49331546/471690

答案 3 :(得分:-1)

与我的应用程序相同的问题。在主要活动中,我必须渲染OpenCV utilizable。 (我假设你的应用程序在使用Mat库时引发链接错误)。 所有示例应用程序都这样做将您的主要活动包括在内。

 private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) {
        @Override
        public void onManagerConnected(int status) {
            switch (status) {
                case LoaderCallbackInterface.SUCCESS:
                {
                    Log.i("OpenCVManager setup", "OpenCV loaded successfully");
                  //Use openCV libraries after this  
                } break;
                default:
                {
                    super.onManagerConnected(status);
                } break;
            }
        }
    };

    @Override
    public void onResume()
    {
        super.onResume();
        OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_9, this,
                mLoaderCallback);
    }