In src->ssim.py, line 99: `img1 = (img1 + 1e-12) / (img2.max() + 1e-12)` should that be `img1 = (img1 + 1e-12) / (img1.max() + 1e-12)` ?