HomeSort by relevance Sort by last modified time
    Searched full:total_pixels (Results 1 - 2 of 2) sorted by null

  /external/pdfium/samples/
image_diff.cc 140 float total_pixels = static_cast<float>(actual.w()) * local
142 if (total_pixels == 0) {
146 return 100.0f * pixels_different / total_pixels;
192 float total_pixels = static_cast<float>(actual.w()) * local
194 if (total_pixels == 0) {
198 return 100.0f * pixels_different / total_pixels;
  /external/webp/src/enc/
picture_psnr.c 111 int total_pixels = src->width * src->height + 2 * uv_w * uv_h; local
113 total_pixels += src->width * src->height;
116 result[4] = GetPSNR(total_sse / total_pixels);

Completed in 213 milliseconds