我被困在试图加载与OpenCV 3.0在Android的资产文件夹中的图像。我在这里读了很多答案,但我不知道我做错了什么。
"my image.jpg"直接放在Android Studio创建的assets文件夹中。这是我使用的代码。我已经检查过了,库已经正确加载。
Mat imgOr = Imgcodecs.imread("file:///android_asset/myimage.jpg");
int height = imgOr.height();
int width = imgOr.width();
String h = Integer.toString(height);
String w = Integer.toString(width);
if (imgOr.dataAddr() == 0) {
// If dataAddr() is different from zero, the image has been loaded
// correctly
Log.d(TAG, "WRONG UPLOAD");
}
Log.d(h, "height");
Log.d(w, "width");
当我试图运行我的应用程序,这是我得到的:
08-21 18:13:32.084 23501-23501/com.example.android D/MyActivity: WRONG UPLOAD
08-21 18:13:32.085 23501-23501/com.example.android D/0: height
08-21 18:13:32.085 23501-23501/com.example.android D/0: width
图片似乎没有尺寸。我猜是因为它没有正确加载。我也试过加载它,把它放在可绘制的文件夹中,但它不管怎样都不起作用,我宁愿使用资产一个。有没有人可以帮助我,告诉我如何找到正确的路径的图像?
谢谢
问题:imread需要绝对路径,而你的资产在apk中,底层的c++类无法从那里读取。
选项1:将图像从可绘制文件夹中加载到Mat中,而不使用imread。
InputStream stream = null;
Uri uri = Uri.parse("android.resource://com.example.aaaaa.circulos/drawable/bbb_2");
try {
stream = getContentResolver().openInputStream(uri);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();
bmpFactoryOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap bmp = BitmapFactory.decodeStream(stream, null, bmpFactoryOptions);
Mat ImageMat = new Mat();
Utils.bitmapToMat(bmp, ImageMat);
选项2:复制图像到缓存并从绝对路径加载。
File file = new File(context.getCacheDir() + "/" + filename);
if (!file.exists())
try {
InputStream is = context.getAssets().open(filename);
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
FileOutputStream fos = new FileOutputStream(file);
fos.write(buffer);
fos.close();
} catch (Exception e) {
throw new RuntimeException(e);
}
if (file.exists()) {
image = cvLoadImage(file.getAbsolutePath(), type);
}