上一页 1 ··· 6 7 8 9 10
摘要: 语料处理时遇到这个错误 在命令行中输入 $vsWherePath = Join-Path ${env:ProgramFiles(x86)} "Microsoft Visual Studio\Installer\vswhere.exe" $installPath = &$vsWherePath -al 阅读全文
posted @ 2018-03-24 14:18 fengmao31 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.C#在与其他人通信时,最好不要用tcpclient来承接其他语言,会收不到用户名,最好都用socket。 2.unity3d在与java通信时,对方返回我unity3d发的数据流会打印收到一个类,最好java那边用字符串接一下,再转发回来。 3.python在ros系统中发出消息时会出现中文乱码 阅读全文
posted @ 2018-03-23 14:08 fengmao31 阅读(250) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; using System; using System.Linq; using System.Text; using System.Net; u 阅读全文
posted @ 2018-03-22 16:57 fengmao31 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 已解决,重启电脑,装环境把声卡驱动那些似乎死机了 ROS Kinetic 使用PocketSphinx进行语音识别教程 https://www.ncnynl.com/archives/201701/1220.html 阅读全文
posted @ 2018-03-21 23:47 fengmao31 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 发布时报错 参考https://forum.unity.com/threads/where-is-package-name-setting.318839/ 参考https://answers.unity.com/questions/162141/android-bundle-identifier-h 阅读全文
posted @ 2018-03-21 23:39 fengmao31 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 编辑物体 M2选取 M2+SHIFT选取多个 A全选 B+M1矩阵选择 C+M1笔刷选择 CTRL+M1套索选择 CTRL+SHIFT+M1取消套索选择 ALT+M2选择边循环,面 CTRL+ALT+M2环边选择,线 CTRL+ +/-(小键盘的)扩大或者收缩选择范围 L选择相连的元素 CTRL+T 阅读全文
posted @ 2018-03-20 22:48 fengmao31 阅读(718) 评论(0) 推荐(0) 编辑
摘要: using NAudio.Wave; using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Net; using System.Text; usi 阅读全文
posted @ 2018-03-19 23:28 fengmao31 阅读(197) 评论(0) 推荐(0) 编辑
摘要: using (Stream stream = response.GetResponseStream()) { buffer2 = new byte[stream.Length]; stream.Read(buffer2, 0, buffer2.Length); } stream.Length失败 解 阅读全文
posted @ 2018-03-19 22:08 fengmao31 阅读(169) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Net; using UnityEngine; public class record : 阅读全文
posted @ 2018-03-19 15:10 fengmao31 阅读(193) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; public class record : MonoBehaviour { AudioClip audioClip; AudioSource 阅读全文
posted @ 2018-03-18 22:08 fengmao31 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1 百度语音模块 参考http://blog.csdn.net/u011118482/article/details/55001444 1.1 百度语音识别包 git clonehttps://github.com/DinnerHowe/simple_voice.git 在catkin下编译 1.2 阅读全文
posted @ 2018-03-09 21:42 fengmao31 阅读(134) 评论(0) 推荐(0) 编辑
摘要: ASP.NET前台代码绑定后台变量方法总结http://www.cnblogs.com/lerit/archive/2010/10/22/1858007.html ASP.NET前台无法访问后台internal类型变量的问题http://www.cnblogs.com/lerit/archive/2 阅读全文
posted @ 2017-03-31 14:16 fengmao31 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ASP.NET 内联代码、内联表达式、数据绑定表达式使用方法罗列(形式就是常说的尖括号 百分号 等于号 井号) 今天在做渭南电脑维修网的一个小功能时遇到了一些问题,因此特别列出,以备他日之用。 首先对ASP.NET 内联代码、内联表达式、数据绑定表达式的概念进行罗列,详细概念以及基本的用法我就不在这 阅读全文
posted @ 2017-03-31 14:08 fengmao31 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10