mse=sum((dfusion(:)-approx(:)).^2)/prod(size(dfusion));
正在计算融合图像的MSE。 dfusion是融合图像的逆小波变换系数值。有2个图像,一个是最终的融合图像。结肠是什么意思?
答案 0 :(得分:0)
a(:)
表示将a
视为1-D列向量。例如:
>> a = [1, 2; 3, 4]
a =
1 2
3 4
>> a(:)
ans =
1
3
2
4