资源说明:这里记录一下在Visual Prediction中用到的几种metrics:
The structural similarity (SSIM)
其中
SSIM的公式基于样本x和y之间的三个比较衡量:亮度 (luminance)、对比度 (contrast) 和结构 (structure)。
所以SSIM也可以写成这三个部分的组合
其中alpha,beta, gama和为1。
SSIM的计算方式为:
def cal_ssim(im1,im2):
assert len(im1.shape) == 2 and len(im2.shape) == 2
assert
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。