登录
首页 » c » HTK的MFCC提取

HTK的MFCC提取

于 2022-03-21 发布 文件大小:7.24 kB
0 182
下载积分: 2 下载次数: 1

代码说明:

本代码是用C编写的关于HTK开发工具的MFCC参数提取,用于语音识别的特征处理部分,供大家分享。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • tcp 二进制通讯实例源码下载
    tcp 二进制通讯实例源码下载
    2014-06-18下载
    积分:1
  • Digital_image_processing_frequency_domain
    该数字图像处理文件有很强的修改能力,可以仔细的分析每一个频域不同条件下的实验结果分析。有很强的处理图像能力(The digital image processing of documents has a strong ability to change and be more careful analysis of each under different conditions, a frequency-domain analysis of the experimental results. Has a strong ability to deal with images)
    2010-01-03 16:37:44下载
    积分:1
  • C_Language
    本电子文档详细讲述了C语言的学习内容,包括各种算法,变量,数组,函数,结构,指针,字符串,预处理,输入和输出等内容(The electronic document to describe in detail the C language, including a variety of algorithms, variable, array, function, structure, pointer, strings, pre-processing, input and output, etc.)
    2008-01-09 20:28:52下载
    积分:1
  • test3_4
    说明:  方程组追赶法的C++程序以及MATLAB源程序(Equations chase law procedures and the MATLAB C++ source code)
    2011-04-12 00:03:24下载
    积分:1
  • 基于stm32pid调速
    基于stm32f10x实现从PA.0输出一个占空比为可变的PWM波,正转亮一个灯,反转亮一个灯,电机停转另一个等亮使用pid进行调速,key1按下加速,key2按下减速,key3按下刹车并附有上位机程序
    2022-02-01 19:38:13下载
    积分:1
  • MC56F8013
    基于滑模算法的无传感器永磁同步电机的空间矢量控制程序(Application sw for sensorless PMSM Vector Control, version with alpha, beta SMO)
    2013-01-17 16:10:35下载
    积分:1
  • 五子棋
    本次设计将提供一个“五子棋”的游戏程序,可完成的功能有“人与人对战”、悔棋、开始新游戏。 课程设计的要求:使用QT软件开发,语言使用C++。 关键技术及相关原理介绍  本系统主要分为输入模块、输出模块和判断模块这三大块。各模块依据所属功能的不同来划分。输入模块主要实现用户对数据的输入,输出模块则是完成对用户输入到系统的数据在棋盘上的显示,而判断模块这是系统的主要模块,完成对用户输赢的判断和对用户悔棋和从新开始等操作命令的响应。本次采用了QT进行程序设计,对于图形界面有较好的处理方法和环境。
    2022-08-12 22:13:53下载
    积分:1
  • 两轮平衡车速度闭环控制
    两轮平衡车中通过速度环和直立环的串级环实现小车平衡与遥控(Balancing and remote control of two-wheeled balancing car by cascade ring of speed ring and vertical ring)
    2020-06-18 05:40:01下载
    积分:1
  • 自动登录qq空间,获取最近访客列表.
    自动登录qq空间,获取最近访客列表.using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1{ public partial class Form1 : Form { Timer terAutologin = new Timer(); public Form1() { InitializeComponent(); terAutologin.Enabled = true; terAutologin.Interval = 3 * 1000; terAutologin.Tick = ter_Tick; } void ter_Tick(object sender, EventArgs e) { if(wb1.Document==null) { return; } HtmlElement dialog_content_1 = wb1.Document.GetElementById("dialog_content_1"); if (dialog_content_1 == null) { return; } var frame = wb1.Document.Window.Frames[0]; if (frame==null) { return; } if (frame.Document==null) { return; } // iframe HtmlElement u = frame.Document.GetElementById("u"); u.InnerText = "171586098"; HtmlElement p = frame.Document.GetElementById("p"); p.InnerText = "*************"; p.SetAttribute("value", "********"); HtmlElement login_button = frame.Document.GetElementById("login_button"); login_button.InvokeMember("click"); terAutologin.Stop(); } private void Form1_Load(object sender, EventArgs e) { ssl1.Text = string.Empty; txtUrl.Text = "http://user.qzone.qq.com/14371939"; wb1.ScriptErrorsSuppressed = true; wb1.Navigate("http://user.qzone.qq.com/14371939/main"); } private void btnGO_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txtUrl.Text)) { wb1.Navigate(txtUrl.Text); ssl1.Text = txtUrl.Text " Navigated"; } } private void wb1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { System.Diagnostics.Trace.WriteLine(e.Url.ToString()); // http://g.cnc.qzone.qq.com/cgi-bin/friendshow/cgi_get_visitor_simple?uin=4371939&type=1&mask=3&rd=0.7801240284461528&_=1397644130601&g_tk=9281770 ssl1.Text = e.Url.ToString() " Completed"; tryRead(); } private void btnTest_Click(object sender, EventArgs e) { tryRead(); } private void tryRead() { if (wb1.Document == null) { return; } HtmlElement pagediv = wb1.Document.GetElementById("visitor_list_page_con"); if (pagediv==null) { return; } //若分页内容存在,则表示已经加载过了. if(pagediv.Children.Count>0) { handlerAbc(null,null); return; } //模拟点击 "最近访客" var aa = pagediv.Parent.Parent.FirstChild.Children[2]; aa.InvokeMember("click"); //给访问列表的容器绑定一个事件...回调时就能获取到. HtmlElement guestlist = pagediv.Parent.FirstChild; //ul.RaiseEvent guestlist.AttachEventHandler("onpropertychange", new EventHandler(handlerAbc)); } private void handlerAbc(Object sender, EventArgs e) { HtmlElement div = wb1.Document.GetElementById("visitor_list_page_con"); HtmlElement guestlist = div.Parent.FirstChild; if (guestlist.InnerHtml.IndexOf("QZONE.FrontPage.showLoginBox") > -1) { HtmlElement alogin = guestlist.GetElementsByTagName("a")[0]; alogin.InvokeMember("click"); // 使用定时器.检测登录窗口的出现.. terAutologin.Start(); return; } else { System.Text.StringBuilder sb = new StringBuilder(); // 取回里面的内容? foreach (HtmlElement li in guestlist.Children) { string qq = li.GetAttribute("uin"); string visitname = li.Children[1].FirstChild.InnerText; string visittime = li.Children[1].Children[1].InnerText; sb.AppendLine(qq visitname visittime); } MessageBox.Show(sb.ToString()); } } }}
    2014-04-18下载
    积分:1
  • 6_7
    1000以内所有的完数,比较简单,用于学习和交流(1000 all finished within few, relatively simple, for learning and communication)
    2013-11-14 15:45:36下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载