调整大小过程中发生OpenImaj OutOfMemoryError

时间:2019-04-30 01:24:19

标签: java swing openimaj

我有两张照片,一张放大了,第二张是大的广角照片。考虑第一个图像是第二个图像的裁剪(尽管不是)。我从每张照片中选择一个代表两个图片中相同事物的像素(例如,一个人的鼻子)。我在第二张图片的顶部叠加了第一张图片,并具有一定的透明度,以使两个选定的像素对齐?

现在我要缩放第二张图像,直到第一张图像基本消失为止,因为第二张图像的比例与第一张图像的比例匹配。

我正在使用OpenImaj,并已使用MBFImage.overlayInPlace()成功完成了此操作。我遇到的问题是,当我使用ResizeProcessor缩放第二张图像时,如果我不得不缩放第二张图像过多(> 5x),则会收到“ OutOfMemoryError:Java堆空间”。

我已使用JDK 12 64bit将-Xmx提高到12G。 我尝试过ResizeProcessor,BilinearInterpolation和BicubicInterpolation大小调整器,它们的结果相同。

这是我最近的尝试。取决于我给JVM提供的内存量,有时它在调整大小时会失败,而有时在toRGB()上会失败:

private MBFImage scaleImage2(float scaleFactor) throws IOException {
    FImage img2Flat = image2.flatten();
    int width = (int)Math.round(img2Flat.getWidth() * scaleFactor);
    int height = (int)Math.round(img2Flat.getHeight() * scaleFactor);
    BilinearInterpolation resizer = new BilinearInterpolation(width, height, 1/scaleFactor);
    resizer.processImage(img2Flat);
    return img2Flat.toRGB();
}

在这里我覆盖图像:

private MBFImage createScaledOverlay() {
    MBFImage scaledImg2 = null;
    if(scaledLastCrop == null) {
        try {
            scaledLastCrop = scaleLastCrop();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    try {
        scaledImg2 = scaleImage2(image2ScaleFactor);
    } catch (IOException e) {
        e.printStackTrace();
    }
    int img2ScaledPixelx = Math.round(image2SelectedPixel.x * image2ScaleFactor);
    int img2ScaledPixely = Math.round(image2SelectedPixel.y * image2ScaleFactor);
    int lastCropScaledPixelx = (int)Math.round(lastCropSelectedPixel.x * lastCropScaleFactor);
    int lastCropScaledPixely = (int)Math.round(lastCropSelectedPixel.y * lastCropScaleFactor);
    scaledImg2.overlayInplace(scaledLastCrop, img2ScaledPixelx - lastCropScaledPixelx, img2ScaledPixely - lastCropScaledPixely);
    return scaledImg2;
}

我可以接受以下两种方法之一:

  1. 修复OutOfMemoryError
  2. 另一种叠加两个图像的方法

1 个答案:

答案 0 :(得分:0)

有时候,解决方案是如此明显,令人尴尬。

现在,我想一想,我的真正目标是找到两个图像之间的比例因子。我可以按比例缩小image1而不是按比例放大image2。这大大减少了内存消耗。然后关于image2,我可以反转这个比例因子。