gpt4 book ai didi

android - 为什么保存位图需要这么长时间?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:27 25 4
gpt4 key购买 nike

所以我在 Google Glass 上有一个应用程序可以拍照,然后将其转换为灰度并覆盖内存中的原始图像:

private void rGBProcessing (final String picturePath, Mat image) {
//BitmapFactory Creates Bitmap objects from various sources,
//including files, streams, and byte-arrays
Bitmap myBitmapPic = BitmapFactory.decodeFile(picturePath);
image = new Mat(myBitmapPic.getWidth(), myBitmapPic.getHeight(), CvType.CV_8UC4);
Mat imageTwo = new Mat(myBitmapPic.getWidth(), myBitmapPic.getHeight(), CvType.CV_8UC1);
Utils.bitmapToMat(myBitmapPic, image);
Imgproc.cvtColor(image, imageTwo, Imgproc.COLOR_RGBA2GRAY);
Utils.matToBitmap(imageTwo, myBitmapPic);

FileOutputStream out = null;
try {
out = new FileOutputStream(picturePath);
myBitmapPic.compress(Bitmap.CompressFormat.PNG, 100, out);
// PNG is a lossless format, the compression factor (100) is ignored
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (out != null) {
out.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}

在使用 Windows 照片查看器将 Google Glass 从调试计算机上拔下然后重新插入之前,灰色位图在内存中不完全可见。有时可以看到一半的灰度图像,但仅此而已。我更改了代码以显示图像而不是将其保存到内部存储器中,这是快速且成功的,这让我认为问题在于将灰度图像读入内部存储器:

FileOutputStream out = null;
try {
out = new FileOutputStream(picturePath);
myBitmapPic.compress(Bitmap.CompressFormat.PNG, 100, out);
// PNG is a lossless format, the compression factor (100) is ignored
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (out != null) {
out.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}

欢迎任何解释或建议。谢谢。

最佳答案

我没有使用谷歌眼镜,但遇到了同样的问题。所以我要在这里记录我的发现。

我的位图需要很长时间才能保存。保存一张1200x1200大小的位图用了将近4秒,最后保存的文件大小为2MB。但我不需要那种清晰度和文件大小。当我指的是“保存”时,它指的是实际单独保存到磁盘,而不是 Android 操作系统将其检测为媒体项所花费的时间。


实际节省:如果您发现保存位图很慢,请尝试以下操作:

  1. 尽量使用JPEG格式,只有在绝对必要时才使用PNG。使用 bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
  2. 如果您正在创建位图并且不关心透明度,则使用 Bitmap.Config.RGB_565 而不是 Bitmap.Config.ARGB_8888 .

    使用Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);


在文件管理器中检测:

一旦您将位图保存为存储中的文件,当您将它连接到您的 PC 时,Android 操作系统不会立即在文件管理器或资源管理器中显示此文件。为了快速进行此检测,您需要使用 MediaScannerConnection

MediaScannerConnection.scanFile(getActivity(), new String[]{file.toString()}, null, null);

关于android - 为什么保存位图需要这么长时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28661197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com