我正在使用opencv
android
sdk。我无法在全屏显示图像:我正在使用:
mRgba = Utils.loadResource(MainActivity.this,R.drawable.images,Highgui.CV_LOAD_IMAGE_COLOR);
Bitmap bmp = Bitmap.createBitmap(mRgba.cols(), mRgba.rows(), Bitmap.Config.ARGB_8888);
Utils.matToBitmap(mRgba, bmp);
imgView2.setImageBitmap(bmp);
显示图像。任何想法我做错了什么?图像分辨率为800x480。
答案 0 :(得分:0)
您已将图片设置为imageView
。那不是全屏。而是创建另一个只有imageView
的活动,将其设置样式设置为android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
。现在将此imageView
设置为Bitmap
。