1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file input format is based loosely on
// Tools/DumpRenderTree/ImageDiff.m
// The exact format of this tool's output to stdout is important, to match
// what the run-webkit-tests script expects.
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include "samples/image_diff_png.h"
#include "third_party/base/logging.h"
#include "third_party/base/numerics/safe_conversions.h"
#if defined(OS_WIN)
#include <windows.h>
#endif
// Return codes used by this utility.
static const int kStatusSame = 0;
static const int kStatusDifferent = 1;
static const int kStatusError = 2;
// Color codes.
static const uint32_t RGBA_RED = 0x000000ff;
static const uint32_t RGBA_ALPHA = 0xff000000;
class Image {
public:
Image() : w_(0), h_(0) {
}
Image(const Image& image)
: w_(image.w_),
h_(image.h_),
data_(image.data_) {
}
bool has_image() const {
return w_ > 0 && h_ > 0;
}
int w() const {
return w_;
}
int h() const {
return h_;
}
const unsigned char* data() const {
return &data_.front();
}
// Creates the image from the given filename on disk, and returns true on
// success.
bool CreateFromFilename(const std::string& path) {
FILE* f = fopen(path.c_str(), "rb");
if (!f)
return false;
std::vector<unsigned char> compressed;
const size_t kBufSize = 1024;
unsigned char buf[kBufSize];
size_t num_read = 0;
while ((num_read = fread(buf, 1, kBufSize, f)) > 0) {
compressed.insert(compressed.end(), buf, buf + num_read);
}
fclose(f);
if (!image_diff_png::DecodePNG(compressed.data(), compressed.size(), &data_,
&w_, &h_)) {
Clear();
return false;
}
return true;
}
void Clear() {
w_ = h_ = 0;
data_.clear();
}
// Returns the RGBA value of the pixel at the given location
uint32_t pixel_at(int x, int y) const {
if (!pixel_in_bounds(x, y))
return 0;
return *reinterpret_cast<const uint32_t*>(&(data_[pixel_address(x, y)]));
}
void set_pixel_at(int x, int y, uint32_t color) {
if (!pixel_in_bounds(x, y))
return;
void* addr = &data_[pixel_address(x, y)];
*reinterpret_cast<uint32_t*>(addr) = color;
}
private:
bool pixel_in_bounds(int x, int y) const {
return x >= 0 && x < w_ && y >= 0 && y < h_;
}
size_t pixel_address(int x, int y) const { return (y * w_ + x) * 4; }
// Pixel dimensions of the image.
int w_;
int h_;
std::vector<unsigned char> data_;
};
float CalculateDifferencePercentage(const Image& actual, int pixels_different) {
// Like the WebKit ImageDiff tool, we define percentage different in terms
// of the size of the 'actual' bitmap.
float total_pixels =
static_cast<float>(actual.w()) * static_cast<float>(actual.h());
if (total_pixels == 0) {
// When the bitmap is empty, they are 100% different.
return 100.0f;
}
return 100.0f * pixels_different / total_pixels;
}
void CountImageSizeMismatchAsPixelDifference(const Image& baseline,
const Image& actual,
int* pixels_different) {
int w = std::min(baseline.w(), actual.w());
int h = std::min(baseline.h(), actual.h());
// Count pixels that are a difference in size as also being different.
int max_w = std::max(baseline.w(), actual.w());
int max_h = std::max(baseline.h(), actual.h());
// These pixels are off the right side, not including the lower right corner.
*pixels_different += (max_w - w) * h;
// These pixels are along the bottom, including the lower right corner.
*pixels_different += (max_h - h) * max_w;
}
float PercentageDifferent(const Image& baseline, const Image& actual) {
int w = std::min(baseline.w(), actual.w());
int h = std::min(baseline.h(), actual.h());
// Compute pixels different in the overlap.
int pixels_different = 0;
for (int y = 0; y < h; ++y) {
for (int x = 0; x < w; ++x) {
if (baseline.pixel_at(x, y) != actual.pixel_at(x, y))
++pixels_different;
}
}
CountImageSizeMismatchAsPixelDifference(baseline, actual, &pixels_different);
return CalculateDifferencePercentage(actual, pixels_different);
}
// FIXME: Replace with unordered_map when available.
typedef std::map<uint32_t, int32_t> RgbaToCountMap;
float HistogramPercentageDifferent(const Image& baseline, const Image& actual) {
// TODO(johnme): Consider using a joint histogram instead, as described in
// "Comparing Images Using Joint Histograms" by Pass & Zabih
// http://www.cs.cornell.edu/~rdz/papers/pz-jms99.pdf
int w = std::min(baseline.w(), actual.w());
int h = std::min(baseline.h(), actual.h());
// Count occurrences of each RGBA pixel value of baseline in the overlap.
RgbaToCountMap baseline_histogram;
for (int y = 0; y < h; ++y) {
for (int x = 0; x < w; ++x) {
// hash_map operator[] inserts a 0 (default constructor) if key not found.
++baseline_histogram[baseline.pixel_at(x, y)];
}
}
// Compute pixels different in the histogram of the overlap.
int pixels_different = 0;
for (int y = 0; y < h; ++y) {
for (int x = 0; x < w; ++x) {
uint32_t actual_rgba = actual.pixel_at(x, y);
RgbaToCountMap::iterator it = baseline_histogram.find(actual_rgba);
if (it != baseline_histogram.end() && it->second > 0)
--it->second;
else
++pixels_different;
}
}
CountImageSizeMismatchAsPixelDifference(baseline, actual, &pixels_different);
return CalculateDifferencePercentage(actual, pixels_different);
}
void PrintHelp() {
fprintf(stderr,
"Usage:\n"
" image_diff [--histogram] <compare file> <reference file>\n"
" Compares two files on disk, returning 0 when they are the same;\n"
" passing \"--histogram\" additionally calculates a diff of the\n"
" RGBA value histograms (which is resistant to shifts in layout)\n"
" image_diff --diff <compare file> <reference file> <output file>\n"
" Compares two files on disk, outputs an image that visualizes the\n"
" difference to <output file>\n");
}
int CompareImages(const std::string& file1,
const std::string& file2,
bool compare_histograms) {
Image actual_image;
Image baseline_image;
if (!actual_image.CreateFromFilename(file1)) {
fprintf(stderr, "image_diff: Unable to open file \"%s\"\n", file1.c_str());
return kStatusError;
}
if (!baseline_image.CreateFromFilename(file2)) {
fprintf(stderr, "image_diff: Unable to open file \"%s\"\n", file2.c_str());
return kStatusError;
}
if (compare_histograms) {
float percent = HistogramPercentageDifferent(actual_image, baseline_image);
const char* passed = percent > 0.0 ? "failed" : "passed";
printf("histogram diff: %01.2f%% %s\n", percent, passed);
}
const char* const diff_name = compare_histograms ? "exact diff" : "diff";
float percent = PercentageDifferent(actual_image, baseline_image);
const char* const passed = percent > 0.0 ? "failed" : "passed";
printf("%s: %01.2f%% %s\n", diff_name, percent, passed);
if (percent > 0.0) {
// failure: The WebKit version also writes the difference image to
// stdout, which seems excessive for our needs.
return kStatusDifferent;
}
// success
return kStatusSame;
}
bool CreateImageDiff(const Image& image1, const Image& image2, Image* out) {
int w = std::min(image1.w(), image2.w());
int h = std::min(image1.h(), image2.h());
*out = Image(image1);
bool same = (image1.w() == image2.w()) && (image1.h() == image2.h());
// TODO(estade): do something with the extra pixels if the image sizes
// are different.
for (int y = 0; y < h; ++y) {
for (int x = 0; x < w; ++x) {
uint32_t base_pixel = image1.pixel_at(x, y);
if (base_pixel != image2.pixel_at(x, y)) {
// Set differing pixels red.
out->set_pixel_at(x, y, RGBA_RED | RGBA_ALPHA);
same = false;
} else {
// Set same pixels as faded.
uint32_t alpha = base_pixel & RGBA_ALPHA;
uint32_t new_pixel = base_pixel - ((alpha / 2) & RGBA_ALPHA);
out->set_pixel_at(x, y, new_pixel);
}
}
}
return same;
}
int DiffImages(const std::string& file1,
const std::string& file2,
const std::string& out_file) {
Image actual_image;
Image baseline_image;
if (!actual_image.CreateFromFilename(file1)) {
fprintf(stderr, "image_diff: Unable to open file \"%s\"\n", file1.c_str());
return kStatusError;
}
if (!baseline_image.CreateFromFilename(file2)) {
fprintf(stderr, "image_diff: Unable to open file \"%s\"\n", file2.c_str());
return kStatusError;
}
Image diff_image;
bool same = CreateImageDiff(baseline_image, actual_image, &diff_image);
if (same)
return kStatusSame;
std::vector<unsigned char> png_encoding;
image_diff_png::EncodeRGBAPNG(
diff_image.data(), diff_image.w(), diff_image.h(),
diff_image.w() * 4, &png_encoding);
FILE* f = fopen(out_file.c_str(), "wb");
if (!f)
return kStatusError;
size_t size = png_encoding.size();
char* ptr = reinterpret_cast<char*>(&png_encoding.front());
if (fwrite(ptr, 1, size, f) != size)
return kStatusError;
return kStatusDifferent;
}
int main(int argc, const char* argv[]) {
bool histograms = false;
bool produce_diff_image = false;
std::string filename1;
std::string filename2;
std::string diff_filename;
int i;
for (i = 1; i < argc; ++i) {
const char* arg = argv[i];
if (strstr(arg, "--") != arg)
break;
if (strcmp(arg, "--histogram") == 0) {
histograms = true;
} else if (strcmp(arg, "--diff") == 0) {
produce_diff_image = true;
}
}
if (i < argc)
filename1 = argv[i++];
if (i < argc)
filename2 = argv[i++];
if (i < argc)
diff_filename = argv[i++];
if (produce_diff_image) {
if (!diff_filename.empty()) {
return DiffImages(filename1, filename2, diff_filename);
}
} else if (!filename2.empty()) {
return CompareImages(filename1, filename2, histograms);
}
PrintHelp();
return kStatusError;
}
|