November 20, 2014 19:00~21:00 Feishang Cafe
'Hi everyone. I am Tom, and I am the Timer tonight, to help you finish your speech on time...' Yeah, I was the Timer tonight. I had p...
分类:
其他好文 时间:
2014-11-24 17:15:51
阅读次数:
187
词性标注(Part-of-Speech tagging 或POS tagging),又称词类标注或者简称标注,是指为分词结果中的每个单词标注一个正确的词性的程序,也即确定每个词是名词、动词、形容词或其他词性的过程。在汉语中,词性标注比较简单,因为汉语词汇词性多变的情况比较少见,大多词语只有一个词性,...
分类:
其他好文 时间:
2014-11-19 17:56:35
阅读次数:
152
来源:http://www.ido321.com/1214.html
前两天翻译了一篇文章,关于利用css的border属性制作基本图形:http://www.ido321.com/1200.html
在此基础上,今天分享一篇文章给大家,如果利用CSS制作冒泡提示框。
先看2张效果图:
CSS:
/*
对话气泡
用法:使用.speech-bubble和.speech-bubble-DIRECTION类
<div class="speech-bubble speech-bubble...
分类:
Web程序 时间:
2014-11-18 13:36:53
阅读次数:
169
又是考输入输出#include #include #include #include #include #include using namespace std;char buf[1048577];bool is_alphanumerical(char &ch) { if (ch >= '0'...
分类:
其他好文 时间:
2014-11-17 01:40:14
阅读次数:
205
TTS(Text to speech)为语音合成的意思。本课程主要介绍了TTS的使用方法。 1 package cn.eoe.tts; 2 3 import java.util.Locale; 4 import android.annotation.SuppressLint; 5 import...
分类:
其他好文 时间:
2014-10-31 17:14:23
阅读次数:
224
添加COM组件引用:Microsoft Speech object library private SpVoice voice; private void button1_Click(object sender, EventArgs e) { ...
分类:
其他好文 时间:
2014-09-29 17:08:51
阅读次数:
192
跟着微软走妥妥的,C#文字转语音有很多参数我就不说了,毕竟我也是初学者。跟大家分享最简单的方法,要好的效果得自己琢磨喽;先添加引用System.Speech程序集;using System;using System.Speech.Synthesis;namespace ConsoleApplicat...
分类:
其他好文 时间:
2014-09-13 17:03:25
阅读次数:
145
一个有趣的东西,今后可能用得上。C#语音识别:在命名空间 System.Speech下SpeechSynthesizer可以将文字转换成语音贴出代码:public partial class Form1 : Form { private SpeechSynthesizer ss;...
分类:
其他好文 时间:
2014-09-05 17:37:11
阅读次数:
265
在System.Speech命名空间下,SpeechSynthesizer类可以把文字读出来,一起来玩下~~ 首先在Windows窗体项目中引入System.Speech。界面部分: 后台代码也很简单,只不过调用了SpeechSynthesizer类的一些方法:using System.Window...
分类:
其他好文 时间:
2014-09-04 00:04:17
阅读次数:
322
Android对TTS技术的支持 Android 1.6开始支持TTS(Text To Speech)技术,通过该技术可以将文本转换成语音。 TTS技术的核心是android.speech.tts.TextToSpeech类。要想使用TTS技术朗读文本,需要做两个工作:初始化TTS和指定要朗读的文....
分类:
其他好文 时间:
2014-08-25 16:44:34
阅读次数:
263