搜索资源列表
144155
- 运动估计全搜索算法VC++实现代码,如有不对之处,敬请指正!-full search motion estimation algorithm VC code, if imperfect, please correct me!
modular_FSME
- 基于Modular调用的全搜索算法 modular 调用library库
full_search_mpeg2
- mpeg2中的全搜索算法,基于visualDSP++平台,常用
mat
- 实现全搜索算法和三步法搜索,对256×256图像进行模拟传送
全搜索算法
- 全搜索算法源代码
7种基于块匹配的运动估计算法比较
- 其中基于块匹配的运动估计算法MATLab源码,包括全搜索、三步法、四步法、新三步法、菱形搜索法、ARPs。
运动估计算法
- 运动估计的算法源程序,搜索精度为半精度,方法是对整像素搜索到的匹配位置的领域像素进行内查,然后进一步搜索,找到更精确的匹配位置- In the movement estimate algorithm source program, the search precision is half precision, the method is the match position domain picture element which
fast_select
- 实现全搜索运动估计算法,实现三步法快速搜索算法-achieve full search motion estimation algorithm, the three-step realization of Fast Search Algorithm
144155
- 运动估计全搜索算法VC++实现代码,如有不对之处,敬请指正!-full search motion estimation algorithm VC code, if imperfect, please correct me!
modular_FSME
- 基于Modular调用的全搜索算法 modular 调用library库-Modular-based full-search algorithm called modular call library library
full_search_mpeg2
- mpeg2中的全搜索算法,基于visualDSP++平台,常用-mpeg2-wide search algorithm, based on the visualDSP++ platform, commonly used
mat
- 实现全搜索算法和三步法搜索,对256×256图像进行模拟传送-Realize full-search algorithm and three-step search, on the 256 × 256 image for analogue transmission
mpeg2sf
- mpeg2全搜索算法的源代码,做图像编码很有用的。也可以和其他搜索算法对比性能-err
cls_AVIA
- 给出了矢量量化编码全搜索和均值不等式删除法两种算法的源代码,并比较了运行速度。-Vector quantization coding gives the full-search and mean inequality law two algorithms to delete the source code, and compare the operating speed.
FS
- 全搜索算法寻找运动矢量,基于MATLAB实现-Full-search motion vector search algorithm, based on the MATLAB implementation
motionEstES
- 该代码是图像处理中块匹配的全搜索算法,是用来估计和计算运动矢量的。-The image processing code is the full search block matching algorithm is used to estimate and calculate the motion vector.
motionEstES
- matlab语言编写的全搜索算法,希望大家有用-Exhaustive Search Algorithm
whole_search_and_three-step_search
- 用matlab实现了图像通信中的全搜索算法与三步搜索算法这两种运动估值算法,给出了运动矢量图,对两种方法的计算复杂度和搜索性能进行了客观的比较。-Matlab image communication achieved by the full search algorithm in the three-step search algorithm with the two motion estimation algorithms, give
zx0
- 图像处理的全搜索算法 寻找匹配块 并可画出运动矢量-Full search algorithm for image processing,Search block matching,Motion vector can be drawn
音视频编码技术-课程作业2
- 全搜索算法重构图。像顾名思义,穷尽法就是对搜索范围内的每个位置都进行计算并比较,从原图像块中找到与待匹配块最相似(误差最小)位置的方法。对于一个搜索范围为[-7,7]的区域来说,x,y两个方向全部搜索一遍需要进行 15X15 = 225 次计算。穷尽法的缺点很明显就是计算量太大,速度很慢,另一方面,由于全部范围都进行了计算,其匹配精度是最高的。(Reconstruction graph of full search algorithm.