📄 costfuncmad.m
字号:
% Computes the Mean Absolute Difference (MAD) for the given two blocks% Input% currentBlk : The block for which we are finding the MAD% refBlk : the block w.r.t. which the MAD is being computed% n : the side of the two square blocks%% Output% cost : The MAD for the two blocks%% Written by Aroh Barjatyafunction cost = costFuncMAD(currentBlk,refBlk, n)err = 0;for i = 1:n for j = 1:n err = err + abs((currentBlk(i,j) - refBlk(i,j))); endendcost = err / (n*n);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -