我的测试 Android 应用程序有一个单独的活动 LoadImage,它有两个方法:一个使用 OpenCV 处理图像的 onCreate 方法,以及一个在屏幕上显示图像 5 秒的 Display 方法。这是我到目前为止的 Display 方法:
[convert OpenCV matrix to a bitmap using an OpenCV method]
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(bitmap, 0, 0, null);
try {
synchronized (this) {
wait(5000);
}
} catch (InterruptedException e) {
}
这是单个活动的 XML 文件(它是一个空白屏幕):
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</RelativeLayout>
如果我按原样运行代码,我会得到......一个空白屏幕。如何让位图显示?
非常感谢。