摘要: Windows 8基于Windows7,同时微软对其进行了性能、安全、隐私、系统可靠性等方面的改进。在硬件需求方面,Windows8与Windows7完全一样。之前也提到,除了x86和x64架构,Windows 8增加了ARM片上系统的支持。连接性与Wi-Fi和移动宽带Windows8会自动选择信号较好的网络来进行连接,也允许应用来控制自己的带宽占用。在有流量限制的网络下,Windows8会自动阻止网络连接来防止不必要的收费。Windows8改进了其Wi-Fi热点连接功能,并且会将移动宽带网络视为计量网络。用户也可以快速地控制无线信号,实现电脑的“飞行模式”。设备应用与驱动当用户连接上新的Wi 阅读全文
posted @ 2012-06-28 19:32 nsoft 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 基于Windows Embedded Standard以及Windows Embedded XP,如果需要添加语音识别,语音朗读功能,需要下列组件的支持。Speech Control Panel:添加该组件可以在控制面中添加语音控制图标,我们可以通过这个功能来选择或者配置Speech recognition(SR-语音识别)或者 text-to-speech engine(TTS-文本语音转化引擎)。 这些设置取决与可选择的语言,声音输出和声音质量, 也包括可选择的麦克风输入。 在语音属性中可以制定和更新用户配置文件。通过用户配置文件,使语音识别引擎能够更好地认识到一个发言者的习惯和在一个特定 阅读全文
posted @ 2012-06-28 19:28 nsoft 阅读(421) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using SpeechLib;using System.Windows.Forms;namespace hbdlc@qq.com{ public class SpRecognition { public SpeechLib.ISpeechRecoGrammar isrg; public SpeechLib.SpSharedRecoContextClass ssrContex = null; public System.Window 阅读全文
posted @ 2012-06-28 19:23 nsoft 阅读(500) 评论(0) 推荐(0) 编辑
摘要: #include <windows.h>#include <sapi.h>#include <stdio.h>#include <string.h>#include <atlbase.h>#include "sphelper.h"inline HRESULT BlockForResult(ISpRecoContext * pRecoCtxt, ISpRecoResult ** ppResult){//创建语音识别 HRESULT hr = S_OK;CSpEvent event; while (SUCCEEDED( 阅读全文
posted @ 2012-06-28 19:19 nsoft 阅读(584) 评论(0) 推荐(0) 编辑