CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - dynamic programming matching

搜索资源列表

  1. 用动态规划算法思想求最小编辑距离

    0下载:
  2. 用动态规划算法思想求最小编辑距离,即近似字符串匹配问题,Thinking of using dynamic programming algorithm for the minimum edit distance, that is, approximate string matching problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-25
    • 文件大小:890byte
    • 提供者:Doreen
  1. testdtw(zhu)

    0下载:
  2. function dist = dtw(t,r) n = size(t,1) m = size(r,1) 帧匹配距离矩阵 d = zeros(n,m) for i = 1:n for j = 1:m d(i,j) = sum((t(i,:)-r(j,:)).^2) end 累积距离矩阵 D = ones(n,m) * realmax D(1,1) = d(1,1) 动态规划 for i = 2:n
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-03-24
    • 文件大小:560byte
    • 提供者:ydh
  1. Dinp_2004

    1下载:
  2. 这是基于动态规划的立体匹配的代码,是当前立体匹配中很好的一种实现方式-This is the stereo matching based on dynamic programming code that is currently in a good stereo matching method to implement
  3. 所属分类:Special Effects

    • 发布日期:2017-03-26
    • 文件大小:217.25kb
    • 提供者:gengyingnan
  1. Dynamic_pro

    1下载:
  2. 自由始端和终端的动态规划,求指标函数最小值的逆序算法递归 % 计算程序。x是状态变量,一列代表一个阶段状态;M-函数 % DecisFun(k,x)由阶段k的状态变量x求出相应的允许决策变量 % M-函数ObjFun(k,x,u)是阶段指标函数,M-函数TransFun(k,x,u) % 是状态转移函数,其中x是阶段k的某状态变量,u是相应的决策变量; % 输出p_opt由4列构成,p_opt=[序号组 最优策略组 最优轨线组 % 指标函数值组];fval是一个列向量
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-30
    • 文件大小:1.83kb
    • 提供者:haiyan
  1. DataStruct

    0下载:
  2. 此文件夹中共包括十二个小程序 AVL创建平衡二叉树,通过加入一个个的结点创建,并实现了平衡二叉树中的结点删除 Boyer_Moore算法的串模式匹配 Horspool算法的串模式匹配 Graph实现了有向图的非递归广度优先遍历及非递归深度优先遍历 HeapSort利用堆排序实现优先级队列 Merge实现二路归并排序算法 MFK动态规划解背包问题 nqueue求解n皇后问题 QuickSort快速排序算法的实现。 Shell排序算法的实现。 Tree程序
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:366.03kb
    • 提供者:zouyan
  1. LCS

    0下载:
  2. 用LCS方法解决字符匹配问题,用到动态规划的思想。原创-LCS solution with matching characters, the idea of using dynamic programming
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:633byte
    • 提供者:bohu
  1. MCMProjects

    1下载:
  2. 我备战2010数学建模美赛所精心准备的算法资料,一共13个算法。应该说是目前比较全的算法集了。每个算法由一个VC6例子实现,来解决一个问题。其中一些是自己编写,其它的也是由网上找到后经过修改编译通过的。比赛结果还不错,一个M,现在把资料共享出来,希望对大家有所帮助,算法主要有模拟退火,遗传算法,蒙特卡罗算法,蚁群算法,粒子群算法,元胞自动机,Dijkstra,最小生成树算法,二分图最大匹配算法,最大流算法,动态规划算法,分支定界法,排队论算法,决策论算法等,我写了个说明文件,列的挺详细的-I a
  3. 所属分类:matlab

    • 发布日期:2017-04-09
    • 文件大小:1.29mb
    • 提供者:一招鲜
  1. DTW

    0下载:
  2. DTW(Dynamic Time Warping,动态时间归整)算法,该算法基于动态规划(DP)的思想,解决了发音长短不一的模板匹配问题,是语音识别中出现较早、较为经典的一种算法。-DTW (Dynamic Time Warping, Dynamic Time Warping) algorithm based on dynamic programming (DP) ideas, to solve the pronunciation of different lengths of the temp
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:5.64kb
    • 提供者:伏伊宁
  1. DTW

    1下载:
  2. DTW(Dynamic Time Warping,动态时间归整)算法,该算法基于动态规划(DP)的思想,解决了发音长短不一的模板匹配问题,是语音识别中出现较早、较为经典的一种算法。用于孤立词识别,DTW算法与HMM算法在训练阶段需要提供大量的语音数据,通过反复计算才能得到模型参数,而DTW算法的训练中几乎不需要额外的计算。所以在孤立词语音识别中,DTW算法仍然得到广泛的应用。 -DTW (Dynamic Time Warping, dynamic time warping) algorithm
  3. 所属分类:matlab例程

    • 发布日期:2012-12-31
    • 文件大小:5.64kb
    • 提供者:fujuan
  1. Dynamic-programming

    0下载:
  2. 动态规划算法的相关文档。动态规划算法可用于很多方面,比如立体匹配等。-Dynamic programming algorithm documentation. Dynamic programming algorithm can be used in many aspects, such as stereo matching.
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:245.89kb
    • 提供者:linjingliang
  1. steromacthing

    0下载:
  2. 本文件为国外立体匹配算法解释的PPT文档,主要是立体匹配中的动态规划算法。里面有两个文件。-This document is to explain foreign PPT stereo matching documents, mainly in the dynamic programming stereo matching algorithm. There are two files.
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1.65mb
    • 提供者:linjingliang
  1. OZ-Computer-Programming(MIT-Press)

    1下载:
  2. oz:多范式语言,  函数型语言(词法域 第一类过程 模式匹配 第一类统一语法),lazy,高阶(可实现非递归的循环),尾递归,描述式编程  面向对象(状态 Stateful/抽象数据类型 多重继承),  并行(多线程)(dataflow(数据流)线程 动态 连续 互影响),  约束编程和逻辑推理(逻辑变量 分离结构 可编程搜索策略),人工智能,  分布式(网络透明的分布式运算 组件编程 自动连接自动断线 共享变量/对象/类/和过程),  网络编程,无状态数据
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-17
    • 文件大小:4.33mb
    • 提供者:yuchao
  1. DTW

    0下载:
  2. DTW(Dynamic Time Warping,动态时间归整)算法,该算法基于动态规划(DP)的思想,解决了发音长短不一的模板匹配问题-A Dynamic Warping, DTW (Dynamic Time GuiZheng) algorithm, which is based on Dynamic programming (DP) ideas, solving the pronunciation different length of template matching problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:2.48kb
    • 提供者:jieli
  1. imagematching

    1下载:
  2. 本项目将多尺度理论、动态规划法、模式识别和区域划分等技术应用到图像的立体匹配之中,减少立体匹配过程中的搜索空间、计算时间和匹配错误;-This project will multi-scale theory, the dynamic programming, pattern recognition and regional division technology application of image matching of three-dimensional, reduce the sear
  3. 所属分类:Special Effects

    • 发布日期:2017-04-06
    • 文件大小:72.27kb
    • 提供者:蒋星星
  1. K-match

    0下载:
  2. K-近似匹配,动态规划法。输入两个文本和编辑距离k,找出k以内的文本匹配情况。代码很短短,没有相当算法功底很难看懂。最好参考经典的算法设计书籍。-K-approximate matching, dynamic programming method. Two input text and edit distance k, find k within the text to match. The code is a short, not quite algorithms foundation is
  3. 所属分类:CSharp

    • 发布日期:2017-04-07
    • 文件大小:17.47kb
    • 提供者:qindan
  1. DPSC

    0下载:
  2. 參考文獻「Rotation invariant non-rigid shape matching in cluttered scenes」and matlab code. 使用Dynamic Programming Shape Context.-「Rotation invariant non-rigid shape matching in cluttered scenes」and matlab code. Using Dynamic Programming Shape Context.
  3. 所属分类:matlab

    • 发布日期:2017-11-13
    • 文件大小:794.54kb
    • 提供者:游炳賢
  1. DNA-Sequence-Alignment

    0下载:
  2. 动态编程,DNA 序列对比,最长公共子序列。一对DNA 序列可以手动输入,匹配参数,误配参数,和惩罚值可根据实验要求改变-Dynamic programming, DNA sequence comparison, the longest common subsequence. The DNA sequence can be entered manually, matching parameters mis-parameters, and the penalty value can be chan
  3. 所属分类:DNA

    • 发布日期:2017-11-12
    • 文件大小:4.11mb
    • 提供者:bovey
  1. lcs

    0下载:
  2. 动态规划 最长子字符串匹配 可以输出多个匹配的子字符串 算法导论-Dynamic programming longest substring matching substring can output multiple matches Introduction to Algorithms
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-19
    • 文件大小:5.33kb
    • 提供者:vivian
  1. ten-algorithm

    1下载:
  2. 目录 1,搜索算法; 2,贪心算法; 3,动态规划; 4,最短路径; 5,最小生成树; 6,二分图的最大匹配; 7,-Contents 1, the search algorithm 2, the greedy algorithm 3, dynamic programming 4, the shortest path 5, the minimum spanning tree 6, maximum bipartite matching 7, ...
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1.03mb
    • 提供者:real
  1. dtw

    0下载:
  2. 这个算法是基于动态规划(DP)的思想,解决了发音长短不一的模板匹配问题,简单来说,就是通过构建一个邻接矩阵,寻找最短路径和。-This algorithm is based on the idea of ​ ​ dynamic programming (DP) to solve the problem of template matching pronunciation of varying lengths, simply put, is by building an adj
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-13
    • 文件大小:2.49kb
    • 提供者:何明洋
« 12 »
搜珍网 www.dssz.com