web-dev-qa-db-fra.com

convertir Bitmap en Mat après la capture d'une image à l'aide de l'appareil photo Android

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);
}

Impossible d'afficher le bmp. Mon application s'est arrêtée après avoir pris une photo.

26
John

Utils.bitmapToMap requiert une bitmap de type ARGB_8888 ou RGB_565.

import org.opencv.Android.Utils;

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

Avec Camera2 cette tâche est très rapide, vous devez configurer les ImageReader avec ImageFormat sur YUV_420_888 et ensuite traiter les images avec OpenCV comme ceci:

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

Une complète implémentation dans la réponse suivante: https://stackoverflow.com/a/49331546/471690

0
Hpsaturn