costfuncmad.m

来自「The attached file for motion estimation 」· M 代码 · 共 24 行

M
24
字号
% 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 + =
减小字号Ctrl + -
显示快捷键?