20

我正在开发一个 Java 应用程序的一部分,该应用程序将图像作为字节数组,将其读入java.awt.image.BufferedImage实例并将其传递给第三方库进行处理。

对于单元测试,我想获取一个图像(来自磁盘上的文件)并断言它等于已由代码处理的同一图像。

  • 我的预期 BufferedImage是使用ImageIO.read(URL).
  • 我的测试代码将相同的文件读入 aBufferedImage并将其作为 PNG 写入字节数组,以提供给被测系统。

当被测系统将字节数组写入新的时,BufferedImage我想断言这两个图像以有意义的方式相等。使用equals()(继承自Object)不起作用(当然)。比较BufferedImage.toString()值也不起作用,因为输出字符串包含对象引用信息。

有人知道捷径吗?我不希望在大型应用程序的一小部分中为单个单元测试引入第三方库。

4

8 回答 8

18

这是最好的方法。无需保留变量来判断图像是否仍然相等。当条件为假时立即返回假。短路评估有助于在比较失败后节省循环像素的时间,就像 trumpetlick 的答案一样。

/**
 * Compares two images pixel by pixel.
 *
 * @param imgA the first image.
 * @param imgB the second image.
 * @return whether the images are both the same or not.
 */
public static boolean compareImages(BufferedImage imgA, BufferedImage imgB) {
  // The images must be the same size.
  if (imgA.getWidth() != imgB.getWidth() || imgA.getHeight() != imgB.getHeight()) {
    return false;
  }

  int width  = imgA.getWidth();
  int height = imgA.getHeight();

  // Loop over every pixel.
  for (int y = 0; y < height; y++) {
    for (int x = 0; x < width; x++) {
      // Compare the pixels for equality.
      if (imgA.getRGB(x, y) != imgB.getRGB(x, y)) {
        return false;
      }
    }
  }

  return true;
}
于 2015-04-27T03:40:06.573 回答
8

如果速度是一个问题,并且两者BufferedImages具有相同的位深度、排列等(这里似乎必须如此),您可以这样做:

DataBuffer dbActual = myBufferedImage.getRaster().getDataBuffer();
DataBuffer dbExpected = bufferImageReadFromAFile.getRaster().getDataBuffer();

找出它是哪种类型,例如DataBufferInt

DataBufferInt actualDBAsDBInt = (DataBufferInt) dbActual ;
DataBufferInt expectedDBAsDBInt = (DataBufferInt) dbExpected ;

对 DataBuffers 的大小和 bank 进行一些“健全性检查”,然后循环

for (int bank = 0; bank < actualDBAsDBInt.getNumBanks(); bank++) {
   int[] actual = actualDBAsDBInt.getData(bank);
   int[] expected = expectedDBAsDBInt.getData(bank);

   // this line may vary depending on your test framework
   assertTrue(Arrays.equals(actual, expected));
}

这接近于你能得到的最快速度,因为你一次抓取一大块数据,而不是一次抓取一个。

于 2012-06-13T01:12:18.263 回答
3

您可以编写自己的例程进行比较!

int width;
int height;
boolean imagesEqual = true;

if( image1.getWidth()  == ( width  = image2.getWidth() ) && 
    image1.getHeight() == ( height = image2.getHeight() ) ){

    for(int x = 0;imagesEqual == true && x < width; x++){
        for(int y = 0;imagesEqual == true && y < height; y++){
            if( image1.getRGB(x, y) != image2.getRGB(x, y) ){
                imagesEqual = false;
            }
        }
    }
}else{
    imagesEqual = false;
}

这将是一种方式!

于 2012-06-12T23:54:46.660 回答
1

我在 Groovy 中更改了等于像素的函数,可能会有所帮助:

boolean imagesAreEqual(BufferedImage image1, BufferedImage image2) {
    if (image1.width != image2.width || image1.height != image2.height) {
         return false
    }
    for (int x = 1; x < image2.width; x++) {
        for (int y = 1; y < image2.height; y++) {
             if (image1.getRGB(x, y) != image2.getRGB(x, y)) {
                 return false
             }
        }
    }
    return true
}
于 2014-04-09T09:14:18.243 回答
1

如果你想使用Mockito,那么你可以写一个Hamcrest Matcher

import org.mockito.ArgumentMatcher;

public class BufferedImageMatcher extends ArgumentMatcher<BufferedImage> {

  private final BufferedImage expected;

  public BufferedImageMatcher(BufferedImage expected) {
    this.expected = expected;
  }

  @Override
  public boolean matches(Object argument) {
    BufferedImage actual = (BufferedImage) argument;

    assertEquals(expected.getWidth(), actual.getWidth());
    assertEquals(expected.getHeight(), actual.getHeight());

    for (int x = 0; x < actual.getWidth(); x++) {
      for (int y = 0; y < actual.getHeight(); y++) {
        assertEquals(expected.getRGB(x, y), actual.getRGB(x, y));
      }
    }

    return true;
  }
}

并像这样使用它

assertThat(actual, new BufferedImageMatcher(expected));
于 2019-04-03T12:55:42.253 回答
0

除了蛮力“循环”之外,我想不出任何东西:

  BufferedImage bi1, bi2, ...
   ...
  Raster r1 = bi1.getData();
  DataBuffer db1 = r1.getDataBuffer();
  if (db1.getSize() != db2.getSize ())
     ...
  for (int i = 0; i < db1.getSize(); i++) {  
    int px = db1.getElem(i);
  }
于 2012-06-12T23:57:58.523 回答
0

imageio您可以通过 aOutputStream到 a写入该图像byte[]。在我的代码中,它或多或少看起来像这样:

byte[] encodeJpegLossless(BufferedImage img){...using imageio...}
...
Assert.assertTrue(Arrays.equals(encodeJpegLossless(img1)
                               ,encodeJpegLossless(img2)
                               )
                 );
于 2013-11-20T15:50:21.010 回答
0

工作良好但效率不高

public static boolean compareImage(File fileA, File fileB) {        
    try {
        // take buffer data from botm image files //
        BufferedImage biA = ImageIO.read(fileA);
        DataBuffer dbA = biA.getData().getDataBuffer();
        int sizeA = dbA.getSize();                      
        BufferedImage biB = ImageIO.read(fileB);
        DataBuffer dbB = biB.getData().getDataBuffer();
        int sizeB = dbB.getSize();
        // compare data-buffer objects //
        if(sizeA == sizeB) {
            for(int i=0; i<sizeA; i++) { 
                if(dbA.getElem(i) != dbB.getElem(i)) {
                    return false;
                }
            }
            return true;
        }
        else {
            return false;
        }
    } 
    catch (Exception e) { 
        e.printStackTrace();
        return  false;
    }
}
于 2018-07-24T11:24:15.410 回答