Lines Matching refs:ssim
11 #include "../util/ssim.h" // NOLINT
34 // SSIM
74 // Common final expression for SSIM, once the weighted sums are known.
273 double SSIM = 0.;
282 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
287 #pragma omp parallel for reduction(+: SSIM)
291 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
294 SSIM += GetSSIMFullKernel(org, rec, i, j, stride, kiW[0]);
299 // zeros which won't contribute to the overall SSIM value (but we need
315 SSIM += GetSSIMFullKernel(scratch_org, scratch_rec,
323 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
326 return SSIM;
329 double CalcLSSIM(double ssim) {
330 return -10.0 * log10(1.0 - ssim);