Searched refs:image2 (Results 1 – 2 of 2) sorted by relevance
261 private static boolean isAlmostIdenticalInRect(Bitmap image1, Bitmap image2) { in isAlmostIdenticalInRect() argument262 if (image1 == null || image2 == null) { in isAlmostIdenticalInRect()266 if (image1.getWidth() != image2.getWidth() || image1.getHeight() != image2.getHeight()) { in isAlmostIdenticalInRect()268 + "image2:" + image2); in isAlmostIdenticalInRect()276 int color2 = image2.getPixel(x, y); in isAlmostIdenticalInRect()
672 YuvImage image2 = new YuvImage(yuv, format, WIDTH, HEIGHT, null, in verifyParameters() local674 image2.compressToJpeg(rect, 80, stream); in verifyParameters()