资源简介

matlab实现的三种算法,最佳宏块匹配,完整程序,不含测试视频,要自己找主程序MVsearch中要求的YUV格式的视频帧,

资源截图

代码片段和文件信息

% 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 Barjatya


function cost = costFuncMAD(currentBlkrefBlk n)


err = 0;
for i = 1:n
    for j = 1:n
        err = err + abs((currentBlk(ij) - refBlk(ij)));
    end
end
cost = err / (n*n);


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        519  2004-04-26 09:46  三种最佳宏块匹配算法\costFuncMAD.m

     文件        700  2004-04-15 10:25  三种最佳宏块匹配算法\minCost.m

     文件        650  2019-11-28 11:24  三种最佳宏块匹配算法\MVsearch.m

     文件       2439  2019-11-28 09:51  三种最佳宏块匹配算法\Mycon.m

     文件       2230  2019-11-28 01:29  三种最佳宏块匹配算法\Mylog.m

     文件       2026  2019-11-28 01:11  三种最佳宏块匹配算法\Mytri.m

     文件        842  2019-11-25 18:53  三种最佳宏块匹配算法\yuv_import.m

     目录          0  2019-11-28 18:48  三种最佳宏块匹配算法

----------- ---------  ---------- -----  ----

                 9406                    8


评论

共有 条评论