资源简介
提供了多中块匹配算法的matalb程序,供交流学习
代码片段和文件信息
% 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);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-05-21 10:08 BlockMatchingAlgoMPEG\
文件 122444 2005-10-20 16:51 BlockMatchingAlgoMPEG\BlockMatchingAlgorithmsForMotionEstimation.PDF
文件 519 2004-04-26 01:46 BlockMatchingAlgoMPEG\costFuncMAD.m
文件 487 2004-04-26 01:49 BlockMatchingAlgoMPEG\imgPSNR.m
文件 700 2004-04-15 02:25 BlockMatchingAlgoMPEG\minCost.m
文件 1094 2004-04-10 18:09 BlockMatchingAlgoMPEG\motionComp.m
文件 6474 2004-04-26 02:01 BlockMatchingAlgoMPEG\motionEst4SS.m
文件 3152 2004-04-26 01:26 BlockMatchingAlgoMPEG\motionEstAnalysis.m
文件 6257 2004-04-26 02:00 BlockMatchingAlgoMPEG\motionEstARPS.m
文件 19496 2004-04-26 02:04 BlockMatchingAlgoMPEG\motionEstDS.m
文件 2510 2004-04-26 02:07 BlockMatchingAlgoMPEG\motionEstES.m
文件 10253 2004-04-26 02:08 BlockMatchingAlgoMPEG\motionEstNTSS.m
文件 12157 2004-04-26 02:10 BlockMatchingAlgoMPEG\motionEstSESTSS.m
文件 4651 2004-04-26 02:11 BlockMatchingAlgoMPEG\motionEstTSS.m
文件 922 2005-10-20 17:02 BlockMatchingAlgoMPEG\README.txt
文件 1334 2009-05-21 10:08 license.txt
- 上一篇:MOSFET structure
- 下一篇:13种pso粒子群优化算法代码合集
相关资源
- codeblocks的15个经典主题
- 贝叶斯网络算法-中文
- 算法导论第三版答案:introduction to
- machine learning SVM classify algorithm
- 距离矢量算法Distance Vector Algorithm的动
- CODEBLOCKS 17.12汉化包
- 长整数运算.zip
- CodeBlocks全部主题
- 页面置换算法,操作系统实验
- xilinx ip核block ram 双端口ram设计
- BlockingQueue队列自定义超时时间取消线
- Adblock Plus123797
- Two Dimensional Phase Unwrapping Theory Algori
- 类电磁机制算法源码(EM Algorithm)
- Iterated Soft-Thresholding Algorithm(谷鹄翔
- Cross-Scale Cost Aggregation Code
- Computer Graphics and Geometric Modeling: Impl
- message passing algorithmMessage Passing Algor
- 贪婪算法的
- Blockchain Revolution 区块链革命英文原版
- ConvexOptimizationAlgorithms(2015年DimitriP
- algorithm design 的课后答案
- The Whale Optimization Algorithm.
- latex Algorithms伪代码规范
- BlockUI控件中文帮助
- A Re-configurable FTL (Flash Translation la<
- codeblocks16.01汉化包
- LBlock轻量级分组密码算法
- 最优服务次序问题C代码
- The GraphSLAM algorithm
评论
共有 条评论