摘要: ippicv ''' wget https://raw.githubusercontent.com/Itseez/opencv_3rdparty/81a676001ca8075ada498583e4166079e5744668/ippicv/ippicv_linux_20151201.tgz ''' 阅读全文
posted @ 2017-03-04 22:54 Viewsky 阅读(1878) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/12179271/python classmethod and staticmethod for beginner http://stackoverflow.com/questions/136097/what is the dif 阅读全文
posted @ 2016-10-08 14:17 Viewsky 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 参考自http://www.johnwittenauer.net/machine-learning-exercises-in-python-part-1/ 一、环境的安装(anaconda) 第一步安装开发环境,windows下使用anaconda一键傻瓜式安装 二、数据集 从https://git 阅读全文
posted @ 2016-09-02 12:43 Viewsky 阅读(205) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_5623cddb0100e4sq.html Linux环境变量名,该环境变量主要用于指定查找共享库(动态链接库)时除了默认路径之外的其他路径。(该路径在默认路径之前查找) 移植程序时的经常碰到需要使用一些特定的动态库,而这些编译好的动态库 阅读全文
posted @ 2016-08-31 15:29 Viewsky 阅读(157) 评论(0) 推荐(0) 编辑
摘要: theano-cache clear encount::error message Traceback (most recent call last): File "/usr/local/bin/theano-cache", line 4, in <module> __import__('pkg_r 阅读全文
posted @ 2016-08-26 10:09 Viewsky 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 所以我建议的关闭防火墙命令是 iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -F .. _tut_profiling: Profiling Theano function 阅读全文
posted @ 2016-08-18 08:54 Viewsky 阅读(370) 评论(0) 推荐(0) 编辑
摘要: out_bytes[i] = udp_server_databuf_receive[i]; } speex_bits_reset(&bitsDecode); speex_bits_read_from(&bitsDecode, (char *)out_bytes, ENCODED_... 阅读全文
posted @ 2015-06-10 23:52 Viewsky 阅读(433) 评论(0) 推荐(0) 编辑
摘要: GPIO_InitTypeDef GPIO_InitStructure;RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; GPIO_InitStructu... 阅读全文
posted @ 2015-06-09 23:10 Viewsky 阅读(1712) 评论(0) 推荐(0) 编辑
摘要: 高林开发进度贴友情链接http://www.cnblogs.com/gaolin/p/4513381.html2015/05/18 今天仍然在调试音频从网络发送到STM32的部分,一起讨论了关于TCP/IP接收机制的调度问题,1 if(q->len > (I2S_TX_DMA_BUF_SIZE... 阅读全文
posted @ 2015-05-18 23:17 Viewsky 阅读(168) 评论(0) 推荐(0) 编辑
摘要: windows的.lib跟Unix的.a一样,属于中间级。.o跟Windows的对象一样,是编译后的文件,需要连接起来(LINK),之后才是可执行文件。clean:一般是make clean ,删除中间的目标文件,.o之类。可以叫别的名字,指示动作用,可以自己定义操作,打包make uImage意思... 阅读全文
posted @ 2015-04-16 17:11 Viewsky 阅读(152) 评论(0) 推荐(0) 编辑