上一页 1 ··· 9 10 11 12 13 14 下一页

2012年3月9日

Using cgdb with ndk-debug (and cgdb tutorial)

摘要: http://mhandroid.wordpress.com/2011/01/23/using-cgdb-with-ndk-debug-and-cgdb-tutorial/Android ndk (http://developer.android.com/sdk/ndk/index.html) comes withndk-gdbcommand that startsgdbdebugger and connects it to Android application.cgdb(http://cgdb.sourceforge.net/) is superior console front-end 阅读全文

posted @ 2012-03-09 23:23 androidme 阅读(324) 评论(0) 推荐(0) 编辑

Using Eclipse for Android C/C++ Debugging

摘要: http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-debugging/Yes. You can use Eclipse for debugging of C/C++ code. I personally prefercgdbbut if you want to debug in Eclipse here is how.See myprevious spothow to set upcgdbdebugger if you think it will suit you.See myblog spothow 阅读全文

posted @ 2012-03-09 23:20 androidme 阅读(708) 评论(0) 推荐(0) 编辑

Using Eclipse for Android C/C++ Development

摘要: http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-development/Programming in C/C++ on Android is just awesome! This tutorial shows how to setup Eclipse for using C/C++ together with Java in Android projects.0) PrerequisitiesYou need to have Google ADT (Android Development Tools) 阅读全文

posted @ 2012-03-09 23:13 androidme 阅读(463) 评论(0) 推荐(0) 编辑

How C/C++ Debugging Works on Android

摘要: http://mhandroid.wordpress.com/2011/01/25/how-cc-debugging-works-on-android/How debugging of C/C++ code works on Android? Nothing special actually.Gdbitself has a feature for remote debugging. Note: For this article I am using Android NDK, r5. The behavior ofndk-buildandndk-gdbcommands can be differ 阅读全文

posted @ 2012-03-09 22:56 androidme 阅读(382) 评论(0) 推荐(0) 编辑

非常容易的进行Android NDK开发的调试

该文被密码保护。 阅读全文

posted @ 2012-03-09 22:40 androidme 阅读(3) 评论(0) 推荐(1) 编辑

Android NDK调试相关

该文被密码保护。 阅读全文

posted @ 2012-03-09 22:20 androidme 阅读(4) 评论(0) 推荐(0) 编辑

Cygwin/MinGW

摘要: Cygwinhttp://www.cygwin.com/MinGW and MSYShttp://www.mingw.org/ 阅读全文

posted @ 2012-03-09 20:20 androidme 阅读(129) 评论(0) 推荐(1) 编辑

Android JNI相关

摘要: JNI Examples for Androidhttp://android.wooyd.org/JNIExample/The Native Android APIhttp://mobilepearls.com/labs/native-android-api/Android JNI开发入门http://my.unix-center.net/~Simon_fu/?p=833 阅读全文

posted @ 2012-03-09 13:13 androidme 阅读(111) 评论(0) 推荐(1) 编辑

Setting up Automatic NDK Builds in Eclipse

摘要: http://mobilepearls.com/labs/ndk-builder-in-eclipse/When editing native JNI code in an Android project using the Android NDK you may configure Eclipse to automatically rebuild your project when editing native code, just as it does for java. The below steps shows how to perform the necessary configur 阅读全文

posted @ 2012-03-09 11:44 androidme 阅读(237) 评论(0) 推荐(1) 编辑

[Android]MIT App Inventor

摘要: http://appinventor.mit.edu/Creating an App Inventor app begins in your browser, where you design how the app will look. Then, like fitting together puzzle pieces, you set your app's behavior. All the while, through a live connection between your computer and your phone, your app appears on your 阅读全文

posted @ 2012-03-09 00:26 androidme 阅读(614) 评论(0) 推荐(1) 编辑

2012年3月7日

Google非官方的Text To Speech和Speech Recognition的API

摘要: 具体参考下面的这些链接,已经有人写好工具直接调用了。Text To Speechhttp://techcrunch.com/2009/12/14/the-unofficial-google-text-to-speech-api/http://michalfapso.blogspot.com/2012/01/using-google-text-to-speech.htmlhttp://tonyvirelli.com/slider/sweet-google-tts/Speech Recognitionhttp://mikepultz.com/2011/03/accessing-google-spe 阅读全文

posted @ 2012-03-07 23:58 androidme 阅读(416) 评论(0) 推荐(0) 编辑

android语音识别 android.speech 包分析

摘要: http://mengxx.blog.51cto.com/2502718/767085android voice recognition,语音识别作为Service实现。 语音识别API在android.speech中 API大致分成应用端API和service端APIRecognizerIntent顾名思义,在自己的程序中,需要语音识别了,发出这个intent,如果已经安装了google voice search应用,谷歌的activity,service就会跳出来帮你。 http://download.csdn.net/source/2591401有三个例子。 例子1基本就实现了这样一个应 阅读全文

posted @ 2012-03-07 23:35 androidme 阅读(4955) 评论(0) 推荐(1) 编辑

[AndroidTips]Check if device is plugged in

摘要: My app has a broadcast receiver to listen for changes to ACTION_POWER_CONNECTED, and in turn flag the screen to stay on.What I am missing is the ability for the app to check the charging status when it first runs. Can anyone please help me with code to manually check charging status?public class Pow 阅读全文

posted @ 2012-03-07 23:15 androidme 阅读(292) 评论(0) 推荐(0) 编辑

两个很不错的在线Text To Speech转换网站

摘要: 声音效果很好,但不支持中文。http://www2.research.att.com/~ttsweb/tts/demo.phphttp://vozme.com/index.php?lang=en 阅读全文

posted @ 2012-03-07 21:40 androidme 阅读(652) 评论(0) 推荐(0) 编辑

Voice Search/Actions for Android

摘要: http://www.google.com/mobile/voice-search/http://www.google.com/mobile/voice-actions/ 阅读全文

posted @ 2012-03-07 17:01 androidme 阅读(170) 评论(0) 推荐(0) 编辑

Android Ant Build简单总结

摘要: 网上介绍很多,这里简单总结一下,也许总结的不对。1. 正常通过Eclipse创建一个Android工程。这是会在该工程目录下生成一个project.properties和proguard.cfg文件。这两个文件后面会用到。2. 在该工程目录下,打开DOS窗口,运行:android update project -p .这时候会在该工程目录下生成用于Ant编译的build.xml文件。3. 在project.properties文件中,添加如下用于进行包的混淆:proguard.config=proguard.cfg4. 生成一个keystore。在Eclipse中右键该工程,选择Android 阅读全文

posted @ 2012-03-07 16:30 androidme 阅读(559) 评论(0) 推荐(0) 编辑

[Android]Speech Input

摘要: http://developer.android.com/resources/articles/speech-input.htmlPeople love their mobile phones because they can stay in touch wherever they are. That means not just talking, but e-mailing, texting, microblogging, and so on.Speech input adds another dimension to staying in touch. Google's Voice 阅读全文

posted @ 2012-03-07 10:56 androidme 阅读(243) 评论(0) 推荐(1) 编辑

放眼观美股:Siri背后的声控技术公司Nuance

摘要: http://tech.163.com/12/0213/20/7Q5VUJL5000915BE.htmlNuance Communications是一家语音及图像解决方案提供商,是全球最大的专业从事语音识别软件研发及销售的公司,背后支撑苹果Siri工作的语音识别 技术便是由Nuance提供,此外公司还研发多款图像软件、输入法软件等产品。服务范围包含自主语音呼叫查询、医疗诊断记录听写、语音在线搜索、语音导 航、以及PDF文档等。· 竞争核心1.研发 Nuance的核心优势首先在其研发能力。通过自主研发以及收购,Nuance获得的语音相关专利数量在行业内绝对领先,目前拥有近4000项专利 阅读全文

posted @ 2012-03-07 10:33 androidme 阅读(657) 评论(0) 推荐(1) 编辑

VoxForge - collect transcribed speech for use with Free and Open Source Speech Recognition Engines

摘要: http://voxforge.org/一些概念解释的很清晰,这里汇总一下。An acoustic model is a file that contains statistical representations of each of the distinct sounds that makes up a word. Each of these statistical representations is assigned a label called a phoneme. The English language has about 40 distinct sounds that are 阅读全文

posted @ 2012-03-07 10:11 androidme 阅读(435) 评论(0) 推荐(1) 编辑

2012年3月6日

隐马尔可夫模型(HMM)攻略

摘要: http://blog.csdn.net/likelet/article/details/7056068隐马尔可夫模型(Hidden Markov Model,HMM) 最初由 L. E. Baum 和其它一些学者发表在一系列的统计学论文中,随后在语言识别,自然语言处理以及生物信息等领域体现了很大的价值。平时,经常能接触到涉及HMM的相关文章,一直没有仔细研究过,都是蜻蜓点水,因此,想花一点时间梳理下,加深理解,在此特别感谢 52nlp 对 HMM 的详细介绍。 考虑下面交通灯的例子,一个序列可能是红-红/橙-绿-橙-红。这个序列可以画成一个状态机,不同的状态按照这个状态机互相交替,每一个状. 阅读全文

posted @ 2012-03-06 14:01 androidme 阅读(2143) 评论(1) 推荐(1) 编辑

上一页 1 ··· 9 10 11 12 13 14 下一页

导航