Commit 1d0ae2e6 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Gerrit Code Review
Browse files

Merge "Don't skip right/bottom border pixels in SSIM calculations."

parents c5be54ee 44f349df
No related merge requests found
Showing with 3 additions and 2 deletions
...@@ -88,8 +88,9 @@ double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1, ...@@ -88,8 +88,9 @@ double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1,
double ssim_total = 0; double ssim_total = 0;
// sample point start with each 4x4 location // sample point start with each 4x4 location
for (i = 0; i < height - 8; i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) { for (i = 0; i <= height - 8;
for (j = 0; j < width - 8; j += 4) { i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) {
for (j = 0; j <= width - 8; j += 4) {
double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2); double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2);
ssim_total += v; ssim_total += v;
samples++; samples++;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment