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

搜索资源列表

  1. dtw

    0下载:
  2. DTW算法的C的实现文件。不过还需要进一步的完善。-DTW algorithm C implementation file. But also need further refinement.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-22
    • 文件大小:26417
    • 提供者:suchto
  1. dtw

    0下载:
  2. DTW算法研究独立词识别C实现,比较不错的资料-The DTW independent word recognition implemented in C
  3. 所属分类:Other systems

    • 发布日期:2017-11-24
    • 文件大小:2570
    • 提供者:吴光辉
  1. DTW-korean

    0下载:
  2. C++处理关于几个韩语单词的识别,运用DTW算法,效果较好-C++ processing on several Korean word recognition using DTW algorithm, better
  3. 所属分类:MultiLanguage

    • 发布日期:2017-11-11
    • 文件大小:1521
    • 提供者:lizemeng
  1. base-on-DTW-Matlab

    0下载:
  2. 编写基于DTW算法的语音识别系统,对于语音识别学习者有很大的帮助-The preparation of the DTW algorithm-based speech recognition system for speech recognition learners of great help
  3. 所属分类:Other systems

    • 发布日期:2017-11-18
    • 文件大小:8140412
    • 提供者:吴光辉
  1. dtw

    0下载:
  2. 用matlab实现特定人的单个词识别,采用dtw算法,主要用到了语音端点检测、语音分帧、梅尔倒谱系数等,文件中含有0-9个输入模版语音,作为参考模版信号。-Using matlab to achieve a specific person single word recognition, using dtw algorithm, mainly used in the voice activity detection, voice sub-frame, Mel Cepstral, etc., do
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:806560
    • 提供者:ruanxioafei
  1. based-DTW-C

    2下载:
  2. 一个基于DTW算法的语音识别的C语言识别,可以识别孤立词,相信对大家有用。-A DTW-based speech recognition algorithm in C language recognition, you can identify isolated words, I believe that to be useful.
  3. 所属分类:语音合成与识别

    • 发布日期:2017-05-23
    • 文件大小:358435
    • 提供者:123
  1. dtw

    0下载:
  2. 用于大矩阵,采用矩阵运算优先速度的dtw算法实现。 dtw:Dynamic time warping 动态时间弯曲算法-dtw:Dynamic time warping
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:768
    • 提供者:txy
  1. DTW

    0下载:
  2. 语音识别的matlab仿真,有文档详细说明,MFCC特征提取,DTW算法识别。对10个简单语音命令进行识别-Speech recognition matlab simulation, documentation detailed descr iption, MFCC feature extraction, DTW algorithm to identify. On 10 simple voice command recognition
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-10
    • 文件大小:1035537
    • 提供者:maliang
  1. dtw

    0下载:
  2. 语音识别,matlab,,DTW算法,实现简单的识别-Voice recognition, matlab,, DTW algorithm, simple identification
  3. 所属分类:matlab

    • 发布日期:2017-04-29
    • 文件大小:242794
    • 提供者:ruankaichun
  1. DTW

    0下载:
  2. DTW算法的程序,申请两个n*m的矩阵D、d,分别为累积距离和帧匹配距离。这里n和m为测试模版与参考模版的帧数。然后通过一个循环计算两个模版的帧匹配距离d。接下来进行动态规划,为每个格点 (i,j)都计算其三个可能的前续格点的累积距离D1,D2,D3。考虑到边界问题,有些前续格点可能不存在,因此加入一些判断条件最后利用最小值函数min(),找到三个前续格点的累积 距离作为累积距离,与当前帧的匹配距离d(i,j)相加,作为当前格点的累积距离。该计算过程一直达到格点(n,m),并将D(n,m)输出,
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:1097
    • 提供者:韦卫
  1. DTW

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

    • 发布日期:2017-05-03
    • 文件大小:531391
    • 提供者:庞永强
  1. DTW-algorithm

    0下载:
  2. 基于DTW算法的语音识别原理与实现,相关论文及Matlab实现流程-The principle and implementation of speech recognition based on DTW algorithm, the relevant papers and Matlab implementation process
  3. 所属分类:Speech/Voice recognition/combine

    • 发布日期:2017-04-17
    • 文件大小:474509
    • 提供者:six
  1. DTW

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

    • 发布日期:2017-04-13
    • 文件大小:2028
    • 提供者:黑色地位
  1. DTW

    0下载:
  2. DTW算法在语音识别中算是最简单最容易理解的算法,可以让你快速学习语音。-DTW is the simplest method,It can make you understand voice quickly!
  3. 所属分类:Other systems

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

    0下载:
  2. 基于matlab 的DTW算法的实现,动态时间规整算法,语音是被。-Matlab achieve the DTW algorithm, dynamic time warping algorithm, the voice is.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:717
    • 提供者:叶宋
  1. DTW

    0下载:
  2. 利用DTW算法实现特定人孤立词识别,C++代码-Use DTW algorithm independent isolated word recognition, C++ Code
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-01
    • 文件大小:472214
    • 提供者:胡荣
  1. Voice Discern For STM32F

    1下载:
  2. 于市售 STM32 开发板上实现特定人语音识别处理项目。识别流程是:预滤波、ADC、分帧、端点检测、预加重、加窗、特征提取、特征匹配。端点检测(VAD)采用短时幅度和短时过零率相结合。检测出有效语音后,根据人耳听觉感知特性,计算每帧语音的 Mel 频率倒谱系数(MFCC)。然后采用动态时间弯折(DTW)算法与特征模板相匹配,最终输出识别结果。先用Matlab对上述算法进行仿真,经数次试验求得算法内所需各系数的最优值。而后将算法移植到 STM32 开发板上,移植过程中根据 STM32 上存储空间相
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2016-04-25
    • 文件大小:650904
    • 提供者:xyz543
  1. DTW

    0下载:
  2. 基于DTW算法的孤立词语音识别,DTW(Dynamic Time Warping,动态时间归整)算法,解决发音长短不一的模板匹配问题,用于孤立词识别.-Isolated word speech recognition based on DTW algorithm.DTW (Dynamic Time Warping, dynamic time warping algorithm), solve the pronunciation of varying lengths of template mat
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-30
    • 文件大小:377491
    • 提供者:张盛
  1. DTW

    0下载:
  2. DTW算法在语音识别,机器学习方面有着很重要的作用。-DTW algorithm in speech recognition, machine learning is convenient and has a very important role.
  3. 所属分类:matlab

    • 发布日期:2017-05-21
    • 文件大小:6059008
    • 提供者:xiejuntai
  1. dtw

    0下载:
  2. DTW算法 教程,可以用于语音识别,图像识别等等。 DTW algorithm tutorial, can be used for speech recognition, image recognition, etc-MATLAB voice processing program, speech enhancement, speech pretreatment, very rich, very useful for reference.
  3. 所属分类:software engineering

    • 发布日期:2017-05-04
    • 文件大小:163312
    • 提供者:刘伟
« 1 2 3 45 6 7 8 9 10 ... 13 »
搜珍网 www.dssz.com