
微软语音识别语音朗读技术
文章平均质量分 85
尹成
尹成微信18510341407,助理微信18514203048
展开
-
基于vc++2008托管代码开发Windows Vista语音识别
废话少说看代码#pragma once#include "Window1.g.h"#include "Resources.Designer.h"using namespace System;using namespace System::Collections::Generic;using namespace System::Text;using namespace System::Win原创 2009-01-06 11:34:00 · 29181 阅读 · 10 评论 -
VC++如何编写一个语音识别的类for Micosoft speech Api5.1
1)在构造语音类之前,必须先设置好工程环境: a、从微软官方网站下载windows speech sdk并安装,然后在Visual Studio 6.0中进行相关设置,在Project Setings选项的C++选项卡的“分类:预处理器”添加“,__WIN32_DCOM”(为预先初始化COM组件成功); b、将预处理头文件选项选中“自动使用预补偿页眉”; c、在常规选项卡中选择“实用M原创 2008-12-13 21:53:00 · 13433 阅读 · 32 评论 -
一个基于WinCE平台的语音朗读例子,利用微软speechAPI5.0
#include "stdafx.h"#include "atlbase.h"#include int _tmain(int argc, TCHAR* argv[]){ HRESULT hr=S_FALSE; WCHAR wcBuff[MAX_PATH]; int i; if( argc { //--- Give out a helpstrin原创 2008-12-13 22:12:00 · 14747 阅读 · 31 评论 -
microsoft speech语音识别技术,语音朗读技术概述
Microsoft Speech SDK提供关于语音处理的一套应用程序编程接口SAPI(Speech Application Programming Interface)。SAPI提供了实现文字-语音转换(Text-to-Speech)和语音识别(Speech Recognition)程序的基本函数。 Speech SDK是以COM接口的方式提供服务的。 Speech Reco原创 2008-12-22 21:02:00 · 5222 阅读 · 6 评论 -
Windows 语音识别编程
语音类 1)在构造语音类之前,必须先设置好工程环境: a、从微软官方网站下载windows speech sdk并安装,然后在Visual Studio 6.0中进行相关设置,在Project Setings选项的C++选项卡的“分类:预处理器”添加“,__WIN32_DCOM”(为预先初始化COM组件成功); b、将预处理头文件选项选中“自动使用预补偿页眉”; c、在常规选项卡原创 2008-12-22 21:06:00 · 7385 阅读 · 18 评论 -
一个超简单的语音识别编程,听写程序
CSpeechRecognition类封装了语音识别操作所需调用的几个接口,使用它进行语音识别编程很方便,也很简洁。CSpeechRecognition类的定义如下:///////////////////////////////////////////////////////////////// active speech engine#include extern C原创 2008-12-22 21:09:00 · 23328 阅读 · 40 评论 -
基于微软嵌入式系统添加语音功能(语音合成与语音识别)
基于Windows Embedded Standard以及Windows Embedded XP,如果需要添加语音识别,语音朗读功能,需要下列组件的支持。Speech Control Panel:添加该组件可以在控制面中添加语音控制图标,我们可以通过这个功能来选择或者配置Speech recognition(SR-语音识别)或者 text-to-speech engine(TTS-文本原创 2009-09-23 10:22:00 · 6416 阅读 · 4 评论 -
VC++基于微软语音引擎开发语音识别总结
关于SAPI的简介API 概述SAPI API在一个应用程序和语音引擎之间提供一个高级别的接口。SAPI 实现了所有必需的对各种语音引擎的实时的控制和管理等低级别的细节。SAPI引擎的两个基本类型是文本语音转换系统(TTS)和语音识别系统。TTS系统使用合成语音合成文本字符串和文件到声音音频流。语音识别技术转换人类的声音语音流到可读的文本字符串或者文件。 文本语音转换原创 2010-02-20 17:42:00 · 36443 阅读 · 354 评论 -
基于Kinect for Windows SDK beta开发语音命令,实现语音控制游戏
微软在2009年6月2日的E3大展上。正式公布的XBOX360体感周边外设。Natal彻底颠覆了游戏的单一操作。使人机互动的理念更加彻底的展现出来。 它是一种3D体感摄影机(开发代号“Project Natal”),同时它导入了即时动态捕捉、影像辨识、麦克风输入、语音辨识、社群互原创 2011-07-11 07:34:07 · 5913 阅读 · 6 评论 -
一个集成微软语音识别技术与语音朗读的类,基于Microsoft SpeechAPI5.1的开发
//////////////////////////////////////////////////////////1,生成动态连接库时,要#define USE_SPEECH_DLL,// 并且#define LANE_SPEECH_EXPORTS//2,使用动态连接库时,要#define USE_SPEECH_DLL//3,声称和使用静态连接库时,什么都不需要//4,另外主程序中原创 2008-12-13 21:45:00 · 14217 阅读 · 35 评论 -
一个基于Windows Vista speech API5.3以及WPF技术的语音识别代码
本人小试牛刀,试验了一下用c#.net3.0 WPF技术开发了一个语音识别程序, windows.cs using System;using System.Collections.Generic;using System.Text;using System.Windows;using System.Windows.Controls;using System.Window原创 2008-12-13 22:15:00 · 19681 阅读 · 27 评论 -
使用VC++6.0+microsoft speech API 实现语音识别示例
如何用C++ 来完成一道语音识别的填空题: #include windows.h>#include sapi.h>#include stdio.h>#include string.h>#include atlbase.h>#include "sphelper.h"//Copyright (c) Microsoft Corporation. All rights reserved.in原创 2008-12-13 21:49:00 · 8924 阅读 · 65 评论 -
基于vc++2008托管代码开发Windows Vista语音朗读
闲的无聊,锻炼一下托管c++,看代码#pragma once#include "Window1.g.h"using namespace System;using namespace System::Collections::Generic;using namespace System::Text;using namespace System::Windows;using namesp原创 2009-01-06 11:37:00 · 30975 阅读 · 2 评论 -
一个基于c#3.0的开发基于vista下语音识别的通用类
废话少说,看代码精解,using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Speech;using System.Speech.Synthesis;using System.Speech.Recognition;using System.Globalizat原创 2009-01-12 19:46:00 · 5558 阅读 · 25 评论 -
一个基于c#3.0的开发基于vista下语音朗读的通用类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Speech.Synthesis;using System.Speech;namespace yincheng01@163.com{ public class SpeechSpeak {原创 2009-01-12 21:09:00 · 15576 阅读 · 6 评论 -
一个基于c#3.0的开发基于2000/XP/2003下语音识别的通用类
废话少说看代码using System;using System.Collections.Generic;using System.Linq;using System.Text;using SpeechLib;using System.Windows.Forms;using System.Collections;namespace yincheng01@163.com{ public原创 2009-01-13 09:00:00 · 16129 阅读 · 6 评论 -
一个基于speech API5.1的通用语音识别类
using System;using System.Collections.Generic;using System.Linq;using System.Text;using SpeechLib;using System.Windows.Forms;namespace yincheng01@163.com{ public class SpRecognition {原创 2009-02-03 17:41:00 · 11355 阅读 · 7 评论 -
微软语音技术 Windows 语音编程初步
一、SAPI简介软件中的语音技术包括两方面的内容,一个是语音识别(speech recognition) 和语音合成(speech synthesis)。这两个技术都需要语音引擎的支持。微软推出的应用编程接口API,虽然现在不是业界标准,但是应用比较广泛。SAPI全称 The Microsoft Speech API.相关的SR和SS引擎位于Speech SDK开发包中。这个语音引擎原创 2008-12-13 21:43:00 · 22673 阅读 · 27 评论 -
一个基于WinCE平台的语音识别例子,利用微软speechAPI5.0
#include #include #include #include #include #include "sphelper.h" inline HRESULT BlockForResult(ISpRecoContext * pRecoCtxt, ISpRecoResult ** ppResult){//创建语音识别 HRESULT hr = S_OK; CSpEvent ev原创 2008-12-13 22:09:00 · 15434 阅读 · 49 评论 -
一个基于Windows Vista speech API5.3以及WPF技术的语音朗读代码
闲暇无事,利用window SDK 与vs2008,基于Windows Vista speech API5.3以及WPF技术开发了一套语音朗读的代码,牛刀小试, using System;using System.Collections.Generic;using System.Text;using System.Windows;using System.Windows.Cont原创 2008-12-13 22:19:00 · 17447 阅读 · 14 评论 -
如何在Windows phone8 中实现iphone中的siri,实现语音合成与语音识别
Windows Phone 8 app提供了新的API可以使用语音输入和输出。 对用户进行通信:语音合成 API计算机生成的语音输出分别调用文本到语音 (TTS) 或语音合成 语音合成的简单示例代码示例: // 创建语音识别private SpeechSynthesizer speechOutput = new SpeechSynthesizer(); private as原创 2013-01-13 19:58:46 · 5263 阅读 · 3 评论