搜索资源列表
yundong-guji-pipei.rar
- matlab平台的一些运动估计块匹配算法,包括3步法,新3步法,4步法,菱形搜索等等,motionsEstAnalysis.m——scr ipt to execute all Algorithms motionEstES.m——Exhaustive Search Algorithm motionEstTSS.m——Three Step Search Algorithm motionEstNTSS.m——New Three Step Search Algorithm motionEstSE
8951245521
- 新三步搜索算法考虑了块矢量中心偏移的特性,在初步搜索时对中心周围的 位置同时做了匹配运算。在物体做小范围运动时,这种改进很有效,可以大大减少运算量,然而,在物体做大范围运动时,这种改进却带来了额外的运算量。现实的情况经常是物体既有小范围的偏移,也有大范围的运动。因此,在考虑块匹配算法时,既要照顾块的中心偏移特性,也要兼顾块的大范围运动。四步搜索 (Four-Step Search FSS)能够兼顾两种情况,可以得到较好的性能。 -The new three-step search alg
BlockMatchingAlgoMPEG
- Block Matching Algorithms for Motion Estimation This project contains the project report and source code by Aroh Barjatya for Digital Image Processing Class at Utah State University. Following is a short descr iption of the m files in this
FsS
- 视频 编解码 处理运动估计 的 四步搜索法 快速块匹配-The four-step search motion estimation method for rapid block matching
motionEst4SS
- matlab语言编写的四部搜索算法,希望大家有用-Four Step Search Algorithm
BasicMotionVectorEstimation
- 运动估计块匹配算法 以下是工程中m文件的简单注释: main.m 可通过主函数调用各种基本的块匹配算法 FullSearch.m 全搜索法(又称为Exhaustive Search) ThreeStepSearch.m 三步搜索法(Three Step Search) NewTSS.m 新三步搜索法(New Three Step Search Algorithm) SESTSS.m 简便高效的三步搜索法(Simple And Efficient TSS)
FourStep
- 这是用四步搜索法求视频图像的运动矢量的。效果很好,可运行。-This is a four-step search Method with video images of the motion vector. Good effect, and can run.
Motion_Est_Alg_FSS
- Motion estimation algorithm - four step search
mpeg-encoder
- MPEG1编码器四种运动估计算法全搜索算法,梯度下降法,菱形搜索算法,四步法-MPEG1 encoder four kinds of full search motion estimation algorithm algorithm, gradient descent method, diamond search algorithm, four-step
FmottionEst44o
- 四步搜索算法对三步算法进行了适当的改进,在一定程度上弥补了TSS算法法在估计细小运动时的不足,并加入了半途中止的策略,进一步提高了搜索精度 -Appropriate improvements to the four-step search algorithm on a three-step algorithm, to a certain extent make up for the deficiencies of the TSS algorithm in estimating the sma
BMAFourStep
- 运用块匹配方法求运动矢量(块匹配法:四步搜索法),能求出x、y的偏移量以及他们的运动矢量值。-The use of a block matching method for solving the motion vector (the block matching method: four-step search method), can be obtained to the x, y offset as well as their motion vector value.
test
- 对运动估计传统的各个方法,例如全搜索,菱形法,自适应,三步法,四步法,以及它们的几种改进的matlab实现-Motion estimation traditional methods, such as full search, diamond method, adaptive, three-step, four-step, and their several improvements matlab implementation
yundonggijidaima
- 实现全搜索,三步法,四步法,钻石法-Realize the full search, three-step method, four footwork, diamond method and so on and so on
fSS
- matlab FSS优化算法的源代码,代码说明详述代码功能-Computes motion vectors using Four Step Search method
motionEst4SS
- Block Matching Algorithm (continuous) Four Step Search
sihuanghou
- 人工智能的四皇后问题,回溯法——在约束条件下先序遍历,并在遍历过程中剪去那些不满足条件的分支。 使用回溯算法求解的问题特征,求解问题要分为若干步,且每一步都有几种可能的选择,而且往往在某个选择不成功时需要回头再试另外一种选择,如果到达求解目标则每一步的选择构成了问题的解,如果回头到第一步且没有新的选择则问题求解失败。 在回溯策略中,也可以通过引入一些与问题相关的信息来加快搜索解的速度。对于皇后问题来说,由于每一行、每一列和每一个对角线,都只能放一个皇后,当一个皇后放到棋盘上后,不管它放在棋
blockmatching
- Block Matching Algorithm Code for All method search: Three step seach New Three step seach Four step search All search MAD MSE Estimination Compariton
8数码
- 需要说明的是:本文示例图中的目标状态在计算上是最快捷的,首先取数很方便,一般地查看目标在第i个位置上的值,则需要访问数组goal[i],而这里goal[i]==i,故而无需访问数组;第二,要想知道数码n的目标位置,则需要找到goal[i]==n,然后row=i/3,col=i%3. 但是这里的话,row=n/3,col=n%3. 当我们用8位无符号整型来表示各个数码值(0~8)时,n/3和n%3操作是非常快的,比访问数组还快。 程序还提供一种玩游戏模式,即用户自己通过W,S,A,D四个键分
FR共轭梯度法
- 共轭梯度法也就是共轭方向法的一种特殊形式,即初始搜索方向为梯度方向。其中根据β的不同又可细分为FR、PRP等方法,主要参考了文件夹中的四本书的内容对其进行总结。最优化算法本质上都是进行最小值的寻优,FR共轭梯度法也不例外。寻优的问题包括两个重要的方面,一个是方向,一个是步长。(Conjugate gradient method is a special form of conjugate direction method, that is, the initial search directio