Home | History | Annotate | Download | only in util

Lines Matching refs:image_width

272                 const int image_width, const int image_height) {
275 const int KERNEL_X = (image_width < KERNEL) ? image_width : KERNEL;
276 const int start_x = start_max(image_width - 8 + KERNEL_X, KERNEL_X);
278 const int stride = image_width;
281 for (int i = 0; i < image_width; ++i) {
282 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
291 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
296 if (start_x < image_width) {
310 (j - KERNEL + k) * stride + image_width - kScratchWidth;
322 for (int i = 0; i < image_width; ++i) {
323 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);