一、结构相似性(structural similarity)
      自然图像具有极高的结构性,表现在图像的像素间存在着很强的相关性,尤其是在空间相似的情况下。这些相关性在视觉场景中携带着关于物体结构的重要信息。我们假设人类视觉系统(HSV)主要从可视区域内获取结构信息。所以通过探测结构信息是否改变来感知图像失真的近似信息。
    大多数的基于误差敏感度(error sensitivity)的质量评估方法(如MSE,PSNR)使用线性变换来分解图像信号,这不会涉及到相关性。我们要讨论的SSIM就是要找到更加直接的方法来比较失真图像和参考图像的结构。
二、SSIM指数
    物体表面的亮度信息与照度和反射系数有关,且场景中的物体的结构与照度是独立的,反射系数与物体有关。我们可以通过分离照度对物体的影响来探索一张图像中的结构信息。这里,把与物体结构相关的亮度和对比度作为图像中结构信息的定义。因为一个场景中的亮度和对比度总是在变化的,所以我们可以通过分别对局部的处理来得到更精确的结果。
                  
      由SSIM测量系统可得相似度的测量可由三种对比模块组成,分别为:亮度,对比度,结构。接下来我们将会对这三模块函数进行定义。
      首先,对于离散信号,我们以平均灰度来作为亮度测量的估计:

                          (1)

亮度对比函数l(x,y)是关于的函数。
       然后,由测量系统知道要把平均灰度值从信号中去除,对于离散信号,可使用标准差来做对比度估量值。
                                                       (2)
       对比度对比函数c(x,y)就是的函数。
       接下来,信号被自己的标准差相除,结构对比函数就被定义成的函数。
       最后,三个对比模块组合成一个完整的相似测量函数:
                                                (3)
        
       

(注:上面公式(9)中改成)!

三、SSIM指数应用于图像质量评估

四、matlab附加代码实现 

function [mssim, ssim_map] = ssim(img1, img2, K, window, L)% ========================================================================
% SSIM Index with automatic downsampling, Version 1.0
% Copyright(c) 2009 Zhou Wang
% All Rights Reserved.
%
% ----------------------------------------------------------------------
% Permission to use, copy, or modify this software and its documentation
% for educational and research purposes only and without fee is hereby
% granted, provided that this copyright notice and the original authors'
% names appear on all copies and supporting documentation. This program
% shall not be used, rewritten, or adapted as the basis of a commercial
% software or hardware product without first obtaining permission of the
% authors. The authors make no representations about the suitability of
% this software for any purpose. It is provided "as is" without express
% or implied warranty.
%----------------------------------------------------------------------
%
% This is an implementation of the algorithm for calculating the
% Structural SIMilarity (SSIM) index between two images
%
% Please refer to the following paper and the website with suggested usage
%
% Z. Wang, A. C. Bovik, H. R. Sheikh, and E. P. Simoncelli, "Image
% quality assessment: From error visibility to structural similarity,"
% IEEE Transactios on Image Processing, vol. 13, no. 4, pp. 600-612,
% Apr. 2004.
%
% http://www.ece.uwaterloo.ca/~z70wang/research/ssim/
%
% Note: This program is different from ssim_index.m, where no automatic
% downsampling is performed. (downsampling was done in the above paper
% and was described as suggested usage in the above website.)
%
% Kindly report any suggestions or corrections to zhouwang@ieee.org
%
%----------------------------------------------------------------------
%
%Input : (1) img1: the first image being compared
% (2) img2: the second image being compared
% (3) K: constants in the SSIM index formula (see the above
% reference). defualt value: K = [0.01 0.03]
% (4) window: local window for statistics (see the above
% reference). default widnow is Gaussian given by
% window = fspecial('gaussian', 11, 1.5);
% (5) L: dynamic range of the images. default: L = 255
%
%Output: (1) mssim: the mean SSIM index value between 2 images.
% If one of the images being compared is regarded as
% perfect quality, then mssim can be considered as the
% quality measure of the other image.
% If img1 = img2, then mssim = 1.
% (2) ssim_map: the SSIM index map of the test image. The map
% has a smaller size than the input images. The actual size
% depends on the window size and the downsampling factor.
%
%Basic Usage:
% Given 2 test images img1 and img2, whose dynamic range is 0-255
%
% [mssim, ssim_map] = ssim(img1, img2);
%
%Advanced Usage:
% User defined parameters. For example
%
% K = [0.05 0.05];
% window = ones(8);
% L = 100;
% [mssim, ssim_map] = ssim(img1, img2, K, window, L);
%
%Visualize the results:
%
% mssim %Gives the mssim value
% imshow(max(0, ssim_map).^4) %Shows the SSIM index map
%========================================================================if (nargin < 2 || nargin > 5) %参数个数小于2个或者大于5个,则退出
mssim = -Inf;
ssim_map = -Inf;
return;
endif (size(img1) ~= size(img2)) %对比的两幅图大小要一致,否则退出
mssim = -Inf;
ssim_map = -Inf;
return;
end[M, N] = size(img1); %将图1的大小赋值给M Nif (nargin == 2) %参数为2时
if ((M < 11) || (N < 11)) %图像长宽都不能小于11,否则退出
mssim = -Inf;
ssim_map = -Inf;
return
end
window = fspecial('gaussian', 11, 1.5); %建立预定义的滤波算子。
%为高斯低通滤波,有两个参数,hsize表示模板尺寸,默认值为[3 3],sigma为滤波器的标准值,单位为像素,默认值为0.5.
K(1) = 0.01;    % default settings
K(2) = 0.03;    %K L参数设置为最佳默认值
L = 255; %设置L的默认值
endif (nargin == 3) %参数为3个时,第3个参数为K
if ((M < 11) || (N < 11))
mssim = -Inf;
ssim_map = -Inf;
return
end
window = fspecial('gaussian', 11, 1.5); %获取滤波算子,类型为gaussian,11为窗口尺寸,1.5为标准差
L = 255;
if (length(K) == 2) %参数K为2个元素的数组,且都大于0
if (K(1) < 0 || K(2) < 0)
mssim = -Inf;
ssim_map = -Inf;
return;
end
else
mssim = -Inf;
ssim_map = -Inf;
return;
end
endif (nargin == 4) %参数3为K,参数4为窗口大小
[H, W] = size(window); %window参数类似ones(8)
if ((H*W) < 4 || (H > M) || (W > N)) %窗口大小要求大于4或者长宽不小于图像的长宽
mssim = -Inf;
ssim_map = -Inf;
return
end
L = 255;
if (length(K) == 2) %判断K数组的大小
if (K(1) < 0 || K(2) < 0)
mssim = -Inf;
ssim_map = -Inf;
return;
end
else
mssim = -Inf;
ssim_map = -Inf;
return;
end
endif (nargin == 5) %当后3个参数都设置时,其中L参数执行传入的参数
[H, W] = size(window);
if ((H*W) < 4 || (H > M) || (W > N))
mssim = -Inf;
ssim_map = -Inf;
return
end
if (length(K) == 2)
if (K(1) < 0 || K(2) < 0)
mssim = -Inf;
ssim_map = -Inf;
return;
end
else
mssim = -Inf;
ssim_map = -Inf;
return;
end
endimg1 = double(img1);
img2 = double(img2);% automatic downsampling
f = max(1,round(min(M,N)/256)); %先选择行列两者中的最小值取整,再选择其中的最大值
%downsampling by f
%use a simple low-pass filter
if(f>1)
lpf = ones(f,f); %初始化一个单位矩阵,用于归一化
lpf = lpf/sum(lpf(:)); %归一化,除以单位矩阵的个数
img1 = imfilter(img1,lpf,'symmetric','same'); %使用滤波函数对img1进行处理,lpf是归一化的滤波模板,
%边界使用symmetric镜像反射填充边界
img2 = imfilter(img2,lpf,'symmetric','same');
%%% 以上两个相当于均值滤波,imfilter不将输入转换为double,输出只与输入同类型,有灵活的边界补充选项
img1 = img1(1:f:end,1:f:end); %向下隔点取样
img2 = img2(1:f:end,1:f:end);
endC1 = (K(1)*L)^2; %求取论文中C1的值
C2 = (K(2)*L)^2; %求取论文中C2的值
window = window/sum(sum(window)); %滤波器归一化操作。缺省的sum(x)就是竖向相加,求每列的和,结果是行向量mu1 = filter2(window, img1, 'valid'); %使用设定好的高斯低通滤波器window对img1进行滤波,结果保存在mu1中
%mu1相当于论文中的Ux,即图像img1的均值
mu2 = filter2(window, img2, 'valid'); %mu2相当于论文中的Uy,即图像img2的均值,点乘模板相加,因为window归一化了,所以是均值
mu1_sq = mu1.*mu1; %矩阵运算,相当于img1均值的矩阵乘法平方
mu2_sq = mu2.*mu2;
mu1_mu2 = mu1.*mu2; %img1和img2均值的矩阵乘法平方
sigma1_sq = filter2(window, img1.*img1, 'valid') - mu1_sq; %协方差期望公式:sigma_x=E(X^2)-(EX)^2
sigma2_sq = filter2(window, img2.*img2, 'valid') - mu2_sq; %协方差期望公式:sigma_y=E(Y^2)-(EY)^2
sigma12 = filter2(window, img1.*img2, 'valid') - mu1_mu2; %协方差期望公式:sigma_xy=E(XY)-(EX)*(EY)if (C1 > 0 && C2 > 0)
ssim_map = ((2*mu1_mu2 + C1).*(2*sigma12 + C2))./((mu1_sq + mu2_sq + C1).*(sigma1_sq + sigma2_sq + C2));
else
numerator1 = 2*mu1_mu2 + C1;
numerator2 = 2*sigma12 + C2;
denominator1 = mu1_sq + mu2_sq + C1;
denominator2 = sigma1_sq + sigma2_sq + C2;
ssim_map = ones(size(mu1));
index = (denominator1.*denominator2 > 0);
ssim_map(index) = (numerator1(index).*numerator2(index))./(denominator1(index).*denominator2(index));
index = (denominator1 ~= 0) & (denominator2 == 0);
ssim_map(index) = numerator1(index)./denominator1(index);
endmssim = mean2(ssim_map);return

图像质量评价函数SSIM介绍相关推荐

  1. 图像质量损失函数SSIM Loss的原理详解和代码具体实现

    本文转自微信公众号SIGAI 文章PDF见: http://www.tensorinfinity.com/paper_164.html http://www.360doc.com/content/19 ...

  2. IQA图像质量评价 数据集介绍(LIVE、TID2013、CSIQ、LIVEC、KonIQ-10K)

    LIVE数据集 LIVE数据集是最大的可用注释图像质量数据集,由奥斯汀的德克萨斯大学图像和视频工程实验室于2006年建立,整个数据集的参考图片来源于互联网和摄影光盘中收集的29张高分辨率和高质量的彩色 ...

  3. ssim算法计算图片_图像质量评估算法 SSIM(结构相似性)

    SSIM的全称为structural similarity index,即为结构相似性,是一种衡量两幅图像相似度的指标.该指标首先由德州大学奥斯丁分校的图像和视频工程实验室(Laboratory fo ...

  4. 图像质量评价方法PSNR+SSIM评估指标SROCC,PLCC

    图像质量评价方法PSNR+SSIM&&评估指标SROCC,PLCC ssim的计算里面有高斯模糊,为了快速计算,先对每个小块进行计算,然后计算所有块的平均值.可以参考源代码实现,而且代 ...

  5. 图像融合质量评价方法SSIM、PSNR、EN、MSE与NRMSE(一)

    文章目录 1 前言 2 融合评价指标介绍 2.1 结构相似性 SSIM 2.2 峰值信噪比 PSNR 2.3 信息熵 Entropy 2.4 均方误差 MSE 2.5 归一化均方根误差 NRMSE 3 ...

  6. 图像质量评估(IQA)基础知识

    图像质量评估(IQA)基础知识 全参.半参和无参 常用衡量标准 http://blog.csdn.net/caoleiwe/article/details/49045633 本研究采用三个常用的性能指 ...

  7. keras自定义simm作为损失函数,并且实现Tensor和数组之间的转换

    ssim介绍 在比较两幅图像误差或者相似度时,常用的衡量方法有MAE和MSE, https://blog.csdn.net/u011875342/article/details/78036380 但是 ...

  8. 几何匹配和分合算法的图像识别技术

    第一章  引言 1.1  面像定位概述及其与面像识别的关系     这个设计所涉及到的是面像的定位和识别.简单来说,所谓面像的定位,就是在照片(静态图像)或视频(动态图像)中标出面像所在的位置,把面像 ...

  9. 【直播】回放与PPT下载!深度学习如何用于摄影图像的处理?

    本周二有三开设了一场深度学习与摄影图像处理相关的直播,现在已经结束,一共约80分钟,直播简介和回放如下! 直播主题 本次主题是带大家一起读<深度学习之摄影图像处理>书籍,本书是一本讲述在摄 ...

  10. DSP上玩玩视频雨滴检测与消除

    DSP上玩玩视频雨滴检测与消除 用陈年老DSP玩一下潮流的去雨算法 理论介绍 LIP模型 连通域约束 雨滴消除 平台参数 DSP平台图像采集接口 DSP平台视频驱动接口 程序设计 核心算法 实验结果 ...

最新文章

  1. 关于本分类(codeforces-好题系列)
  2. boost ref, bind
  3. Codeforces 603A Alternative Thinking
  4. [原理篇] 逻辑回归
  5. Vagrant安装centos7时一直报错无法保存文件
  6. weed mount 之后出现文件删除不掉
  7. 认识python编程环境_认识Python和安装Python环境
  8. 用python绘制图形_使用Python的turtle画炫酷图形
  9. 字节大战腾讯元宇宙;Docker 自己定制镜像;VMware 云桌面助力秦皇岛市第一医院;微软开源 Cloud Katana;...
  10. 升级到vCenter Server 6.5的最佳实践(2147686)
  11. extjs TabPanel 监听激活事件
  12. HDU 1754 I Hate It(线段树版)
  13. 3PHP如何用PDO的连接方式方式导出mysql数据
  14. 小程序常用的10款框架
  15. ios Segue传值
  16. 制作HTML表单(文本框设置对齐等)
  17. 小象学院 零基础Python入门 案例四 52周存钱挑战v_3.0
  18. VMware虚拟机nat模式详解
  19. 我看国内软件行业的发展方向
  20. 互联网巨头的人工智能野心,你看懂了吗?

热门文章

  1. 重复文件清理绿色工具——DoubleKiller
  2. 使用PaddlePaddle实现车牌识别
  3. ACDSee15软件
  4. oracle设置系统权限,Oracle数据库权限管理
  5. SSM毕设项目汽车4S店管理系统ei9uo(java+VUE+Mybatis+Maven+Mysql)
  6. 软件工程 选课系统的uml类图_选课系统的UML建模
  7. 任意类型变量转换成char类型——sprintf函数使用方法
  8. 大气压力换算公式_压力单位换算及计算公式
  9. 小程序 canvas旋转文字
  10. html中居中的三种方式